24 lines
559 B
Plaintext
24 lines
559 B
Plaintext
# Description: A tool for automatically generating Makefiles
|
|
# URL: http://www.gnu.org/software/automake/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: gawk perl autoconf
|
|
|
|
name=automake-114
|
|
version=1.14.1
|
|
release=1
|
|
source=(http://ftpmirror.gnu.org/gnu/automake/automake-$version.tar.xz)
|
|
|
|
build() {
|
|
cd automake-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--program-suffix="-1.14"
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{info,doc}
|
|
rm $PKG/usr/share/automake-*/texinfo.tex
|
|
rm $PKG/usr/share/aclocal/README
|
|
}
|