summaryrefslogtreecommitdiffstats
path: root/make/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'make/Pkgfile')
-rw-r--r--make/Pkgfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/make/Pkgfile b/make/Pkgfile
new file mode 100644
index 0000000..e548ea3
--- /dev/null
+++ b/make/Pkgfile
@@ -0,0 +1,17 @@
+description="GNU implementation of make."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
+url="http://www.gnu.org/software/make/"
+depends=()
+
+name=make
+version=3.82
+release=1
+source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
+build ()
+{
+ cd $name-$version;
+ ./configure --prefix=$prefix --mandir=$mandir $(use_enable nls);
+ make;
+ make DESTDIR=$PKG install;
+}