summaryrefslogtreecommitdiff
path: root/package/libc-test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/libc-test/Makefile')
-rw-r--r--package/libc-test/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/package/libc-test/Makefile b/package/libc-test/Makefile
new file mode 100644
index 000000000..fdf664904
--- /dev/null
+++ b/package/libc-test/Makefile
@@ -0,0 +1,30 @@
+# 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:= libc-test
+PKG_VERSION:= 87d3272494d9e6ea18bde49a8771f6a92e15dc8e
+PKG_RELEASE:= 1
+PKG_GIT:= hash
+PKG_DESCR:= libc test suite
+PKG_SECTION:= base/tests
+PKG_DEPENDS:= make
+PKG_URL:= http://nsz.repo.hu/git/?p=libc-test
+PKG_SITES:= git://nsz.repo.hu:45100/repo/libc-test
+
+PKG_LIBC_DEPENDS:= musl
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBC_TEST,libc-test,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+XAKE_FLAGS+= RUN_TEST=:
+CONFIG_STYLE:= manual
+INSTALL_STYLE:= manual
+
+libc-test-install:
+ $(INSTALL_DIR) $(IDIR_LIBC_TEST)/opt/libc-test
+ $(CP) $(WRKBUILD)/* $(IDIR_LIBC_TEST)/opt/libc-test
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk