eth0s/ports/core/automake/Pkgfile
2020-11-13 13:58:01 +08:00

17 lines
426 B
Text
Executable file

# Description: Programs for generating Makefiles for use with Autoconf
# URL: https://www.gnu.org/software/autoconf
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
# Depends on:
name=automake
version=1.16.2
release=1
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}