summaryrefslogtreecommitdiff
path: root/package/make
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-06-25 21:04:37 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-06-25 21:04:37 +0200
commitb5b277f51439e52bec1ecdb1f6f1d19a3aed448a (patch)
tree124fcb970c087a739eeb10385fb97fc8287cee9d /package/make
parent975f9ccb8c9a3896941e02c2bca538853adf60df (diff)
add some packages
- add make/patch/rpm and dependencies - update ar7 port a little bit
Diffstat (limited to 'package/make')
-rw-r--r--package/make/Config.in6
-rw-r--r--package/make/Makefile27
2 files changed, 33 insertions, 0 deletions
diff --git a/package/make/Config.in b/package/make/Config.in
new file mode 100644
index 000000000..6fe261e4c
--- /dev/null
+++ b/package/make/Config.in
@@ -0,0 +1,6 @@
+config ADK_PACKAGE_MAKE
+ prompt "make.............................. GNU make"
+ tristate
+ default n
+ help
+ GNU make
diff --git a/package/make/Makefile b/package/make/Makefile
new file mode 100644
index 000000000..e8af2ed26
--- /dev/null
+++ b/package/make/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:= make
+PKG_VERSION:= 3.81
+PKG_RELEASE:= 1
+PKG_MD5SUM:= a4e9494ac6dc3f6b0c5ff75c5d52abba
+PKG_DESCR:= GNU make
+PKG_SECTION:= misc
+PKG_URL:= http://www.gnu.org/software/make
+PKG_SITES:= ${MASTER_SITE_GNU:=make/}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,MAKE,make,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE= gnu
+BUILD_STYLE= auto
+INSTALL_STYLE= auto
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_MAKE)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/make $(IDIR_MAKE)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk