core/automake/Pkgfile

27 lines
716 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A tool for automatically generating Makefiles
# URL: http://www.gnu.org/software/automake/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: gawk, perl, autoconf
name=automake
version=1.11
2006-02-23 16:26:10 +01:00
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man
2006-02-23 16:26:10 +01:00
make
2006-11-19 13:37:04 +01:00
make DESTDIR=$PKG install
ln -sf automake-$version $PKG/usr/bin/automake
ln -sf aclocal-$version $PKG/usr/bin/aclocal
mv $PKG/usr/man/man1/automake{-$version.1,.1}
mv $PKG/usr/man/man1/aclocal{-$version.1,.1}
rm -r $PKG/usr/share/{info,doc}
rm $PKG/usr/share/automake-*/texinfo.tex
2006-02-23 16:26:10 +01:00
}