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