mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 09:14:18 +02:00
35 lines
732 B
Text
35 lines
732 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=automake
|
|
pkgver=1.17
|
|
pkgrel=0
|
|
pkgdesc="GNU tool for automatically creating Makefiles"
|
|
url="https://www.gnu.org/software/automake"
|
|
arch="noarch"
|
|
license="GPL-2.0-or-later"
|
|
depends="perl"
|
|
makedepends="autoconf"
|
|
subpackages="$pkgname-doc"
|
|
source="https://ftp.gnu.org/gnu/automake/automake-$pkgver.tar.xz"
|
|
|
|
# many tests have bashisms
|
|
options="!check"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
sha512sums="
|
|
46aba1c9d64a6368b326020803a2999831c1deaf31eaa1c1dfdcfa5138a7f755643294e82a08b6daab3983b31eee725bdb7b9edc4e9a558374c7d1f1b8e854a7 automake-1.17.tar.xz
|
|
"
|