eth0s/ports/core/autoconf/Pkgfile
2019-11-03 13:54:51 +08:00

17 lines
365 B
Text
Executable file

# Description: Programs for producing shell scripts that can automatically configure source code
# URL:
# Maintainer:
# Depends on:
name=autoconf
version=2.69
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
}