summaryrefslogtreecommitdiff
path: root/package/adktest/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/adktest/Makefile')
-rw-r--r--package/adktest/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/adktest/Makefile b/package/adktest/Makefile
new file mode 100644
index 000000000..9a47f7909
--- /dev/null
+++ b/package/adktest/Makefile
@@ -0,0 +1,28 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= adktest
+PKG_VERSION:= 0.1
+PKG_RELEASE:= 7
+PKG_DESCR:= helper tools and scripts for adk-test-framework
+PKG_SECTION:= base/misc
+PKG_URL:= http://openadk.org/
+
+NO_DISTFILES:= 1
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,ADKTEST,adktest,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+adktest-install:
+ $(INSTALL_DIR) $(IDIR_ADKTEST)/usr/bin
+ $(INSTALL_BIN) $(WRKBUILD)/{qmp,quit} \
+ $(IDIR_ADKTEST)/usr/bin
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk