mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
37 lines
802 B
Plaintext
37 lines
802 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=automake
|
|
pkgver=1.16.1
|
|
pkgrel=0
|
|
pkgdesc="A GNU tool for automatically creating Makefiles"
|
|
url="https://www.gnu.org/software/automake"
|
|
arch="noarch"
|
|
license="GPL-2.0-or-later MIT Public-Domain"
|
|
depends="perl"
|
|
makedepends="autoconf"
|
|
subpackages="$pkgname-doc"
|
|
source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
# many tests have bashisms
|
|
options="!check"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
sha512sums="47b0120a59e3e020529a6ce750297d7de1156fd2be38db5d101e50120f11b40c28741ecd5eacf2790a9e25386713dcf7717339cfa5d7943d0dbf47c417383448 automake-1.16.1.tar.gz"
|