diff options
Diffstat (limited to 'm4/Pkgfile')
-rw-r--r-- | m4/Pkgfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/m4/Pkgfile b/m4/Pkgfile new file mode 100644 index 0000000..bdab5be --- /dev/null +++ b/m4/Pkgfile @@ -0,0 +1,17 @@ +description="A standard Unix macro processor with GNU extensions." +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" +url="http://www.seindal.dk/rene/gnu/" +depends=() + +name=m4 +version=1.4.15 +release=1 +source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) +build () +{ + cd $name-$version; + ./configure --prefix=$prefix --mandir=$mandir; + make; + make DESTDIR=$PKG install; +} |