summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-06-12 11:50:41 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-06-12 11:50:41 +0200
commit4fdfeb1433cc2fedf620cb2aa1678dbad535488c (patch)
treeed99dcb622471311ae39b53d52590634913bea0a
parenta06627cf83976f94369b439cc4ebf1c8f3936e5f (diff)
add coreutils, just tsort at the moment
-rw-r--r--package/Config.in1
-rw-r--r--package/coreutils/Makefile27
2 files changed, 28 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index bbe250b37..ba040251a 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -573,6 +573,7 @@ endmenu
menu "Utilities"
source "package/bc/Config.in"
source "package/comgt/Config.in"
+source "package/coreutils/Config.in"
source "package/cpufrequtils/Config.in"
source "package/fbset/Config.in"
source "package/file/Config.in"
diff --git a/package/coreutils/Makefile b/package/coreutils/Makefile
new file mode 100644
index 000000000..70a8f3180
--- /dev/null
+++ b/package/coreutils/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= coreutils
+PKG_VERSION:= 8.5
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c1ffe586d001e87d66cd80c4536ee823
+PKG_DESCR:= basic file, shell and text manipulation utilities
+PKG_SECTION:= base
+PKG_URL:= http://www.gnu.org/software/coreutils/
+PKG_SITES:= http://ftp.gnu.org/gnu/coreutils/
+
+PKG_DESCR_TSORT:= topological sort utility
+
+include $(TOPDIR)/mk/package.mk
+
+#$(eval $(call PKG_template,COREUTILS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,TSORT,tsort,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_TSORT},${PKG_SECTION}))
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_TSORT)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/tsort \
+ $(IDIR_TSORT)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk