summaryrefslogtreecommitdiffstats
path: root/gmake/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'gmake/Pkgfile')
-rw-r--r--gmake/Pkgfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/gmake/Pkgfile b/gmake/Pkgfile
new file mode 100644
index 0000000..00743c0
--- /dev/null
+++ b/gmake/Pkgfile
@@ -0,0 +1,23 @@
+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=gmake
+version=3.82
+release=1
+source=(ftp://ftp.gnu.org/gnu/make/make-$version.tar.bz2)
+build ()
+{
+ cd make-$version;
+ ./configure \
+ ${CHOST:+--build=${CHOST}} \
+ ${CTARGET:+--host=${CTARGET}} \
+ --prefix=$prefix \
+ --mandir=$mandir \
+ --program-prefix=g \
+ $(use_enable nls);
+ make;
+ make DESTDIR=$PKG install;
+}