18 lines
418 B
Text
18 lines
418 B
Text
![]() |
# Description: Programs for generating Makefiles for use with Autoconf
|
||
|
# URL: https://www.gnu.org/software/autoconf
|
||
|
# Maintainer: emmett1, emmett1.2miligrams at gmail.com
|
||
|
# Depends on:
|
||
|
|
||
|
name=automake
|
||
|
version=1.16.1
|
||
|
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
|
||
|
}
|