eth0s/ports/core/autoconf/Pkgfile

18 lines
449 B
Text
Raw Normal View History

# Description: Programs for producing shell scripts that can automatically configure source code
2019-11-10 23:58:56 +08:00
# URL: http://www.gnu.org/software/autoconf
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
# Depends on:
name=autoconf
2021-04-18 08:19:42 +08:00
version=2.71
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
}