summaryrefslogtreecommitdiffstats
path: root/m4/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'm4/Pkgfile')
-rw-r--r--m4/Pkgfile18
1 files changed, 18 insertions, 0 deletions
diff --git a/m4/Pkgfile b/m4/Pkgfile
new file mode 100644
index 0000000..df450cd
--- /dev/null
+++ b/m4/Pkgfile
@@ -0,0 +1,18 @@
+description="A standard Unix macro processor with extensions"
+packager=""
+maintainer="CRUX System Team, core-ports at crux dot nu"
+url="http://www.seindal.dk/rene/gnu/"
+depends=()
+
+name=m4
+version=1.4.15
+release=1
+source=(ftp://ftp.gnu.org/gnu/m4/m4-1.4.15.tar.xz)
+build ()
+{
+ cd $name-$version;
+ ./configure --prefix=/usr --mandir=/usr/man;
+ make;
+ make DESTDIR=$PKG install;
+ rm -rf $PKG/usr/share
+}