summaryrefslogtreecommitdiff
path: root/package/libc-test
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2014-08-01 18:41:18 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2014-08-01 18:41:34 +0200
commitff4c51f5c203a2efc39306e2cff787cc05caae64 (patch)
treeb8322a330c823f2c1343678e4c11cfd816eddb1f /package/libc-test
parenta81c14cdffd24266eb9678a04e0965d464927bc3 (diff)
add libc-test package
Diffstat (limited to 'package/libc-test')
-rw-r--r--package/libc-test/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/libc-test/Makefile b/package/libc-test/Makefile
new file mode 100644
index 000000000..0fc4c78dd
--- /dev/null
+++ b/package/libc-test/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:= libc-test
+PKG_VERSION:= 20140801
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 9f1775966cb903de994ce59a23a138ed
+PKG_DESCR:= libc test suite
+PKG_SECTION:= base/libs
+PKG_DEPENDS:= make
+PKG_URL:= http://nsz.repo.hu/git/?p=libc-test
+PKG_SITES:= http://www.openadk.org/distfiles/
+
+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+= GCC_HONOUR_COPTS=s 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