mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 11:34:20 +02:00
34 lines
964 B
Text
34 lines
964 B
Text
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Contributor: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=autoconf-archive
|
|
pkgver=2024.10.16
|
|
pkgrel=0
|
|
pkgdesc="Collection of re-usable GNU Autoconf macros"
|
|
url="https://www.gnu.org/software/autoconf-archive/"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later"
|
|
depends="autoconf"
|
|
subpackages="$pkgname-doc"
|
|
source="https://ftp.gnu.org/gnu/autoconf-archive/autoconf-archive-$pkgver.tar.xz"
|
|
options="!check" # no tests
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
91140cb666447f12a1d39d7d42f5fe6ea3601bb586f466381c9e949087aafa06aed8d061a4f5d020a3d234eb710e4bb47cd25380bcffd8c423fa1a7af05e988b autoconf-archive-2024.10.16.tar.xz
|
|
"
|