core/automake/Pkgfile

20 lines
536 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
2006-11-19 13:37:04 +01:00
version=1.10
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
make
2006-11-19 13:37:04 +01:00
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
rm -rf $PKG/usr/bin/{automake-*,aclocal-*} \
2006-11-19 13:37:04 +01:00
$PKG/usr/share/{info,doc} \
2006-02-23 16:26:10 +01:00
$PKG/usr/share/automake-*/texinfo.tex
}