summaryrefslogtreecommitdiffstats
path: root/gmake/Pkgfile.old
diff options
context:
space:
mode:
Diffstat (limited to 'gmake/Pkgfile.old')
-rw-r--r--gmake/Pkgfile.old16
1 files changed, 16 insertions, 0 deletions
diff --git a/gmake/Pkgfile.old b/gmake/Pkgfile.old
new file mode 100644
index 0000000..58f4826
--- /dev/null
+++ b/gmake/Pkgfile.old
@@ -0,0 +1,16 @@
+# Description: Controls the generation of executables and other compile-related tasks
+# URL: http://www.gnu.org/software/make/
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+
+name=make
+version=3.82
+release=1
+source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr --mandir=/usr/man --disable-nls
+ make
+ make DESTDIR=$PKG install
+ rm -r $PKG/usr/share
+}