mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
34 lines
871 B
Bash
34 lines
871 B
Bash
# Arch contributor: https://projects.archlinux.org/svntogit/community.git/plain/trunk/PKGBUILD?h=packages/autoconf-archive
|
|
|
|
pkgname=autoconf-archive
|
|
pkgver=2016.09.16
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc="A collection of freely re-usable Autoconf macros"
|
|
arch=('any')
|
|
url="http://www.gnu.org/software/autoconf-archive/"
|
|
_watch="http://mirrors.axint.net/repos/gnu.org/autoconf-archive/"
|
|
license=('GPL')
|
|
depends=('autoconf')
|
|
optdepends=('automake: macros for use with it')
|
|
validpgpkeys=('1A4F63A13A4649B632F65EE141BC28FE99089D72')
|
|
source=(http://ftpmirror.gnu.org/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
|
|
md5sums=('bf19d4cddce260b3c3e1d51d42509071'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|