summaryrefslogtreecommitdiffstats
path: root/automake/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'automake/Pkgfile')
-rw-r--r--automake/Pkgfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/automake/Pkgfile b/automake/Pkgfile
new file mode 100644
index 0000000..0535706
--- /dev/null
+++ b/automake/Pkgfile
@@ -0,0 +1,20 @@
+description="A tool for automatically generating Makefiles."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukuc AT upyum DOT com>"
+url="http://www.gnu.org/software/automake/"
+depends=(gawk perl autoconf)
+
+name=automake
+version=1.11.1
+release=1
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
+build ()
+{
+ cd $name-$version;
+ ./configure --prefix=$prefix --mandir=$mandir;
+ make;
+ make DESTDIR=$PKG install;
+ # FIXME: To manage with uses...
+ #rm -r $PKG/usr/share/{info,doc};
+ #rm $PKG/usr/share/automake-*/texinfo.tex
+}