core/automake/Pkgfile

22 lines
475 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A tool for automatically generating Makefiles
2021-12-13 12:26:34 +01:00
# URL: https://www.gnu.org/software/automake/
2021-07-28 11:02:51 +02:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
2021-10-05 00:18:02 +02:00
# Depends on: autoconf gawk perl
2006-02-23 16:26:10 +01:00
name=automake
2021-10-05 00:18:02 +02:00
version=1.16.5
2017-06-22 11:27:58 +02:00
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
2021-07-28 11:02:51 +02:00
build() {
cd $name-$version
2021-07-28 11:02:51 +02:00
./configure --prefix=/usr
2021-07-28 11:02:51 +02:00
make
make DESTDIR=$PKG install
2021-07-28 11:02:51 +02:00
rm -r $PKG/usr/share/{info,doc}
rm $PKG/usr/share/automake-*/texinfo.tex
2006-02-23 16:26:10 +01:00
}