mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
651 B
Bash
23 lines
651 B
Bash
# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
|
|
# Modified by OpenPogo
|
|
# Successfully builds natively
|
|
|
|
pkgname=autoconf
|
|
pkgver=2.63
|
|
pkgrel=2
|
|
pkgdesc="A GNU tool for automatically configuring source code"
|
|
arch=('arm')
|
|
license=('GPL2' 'GPL3')
|
|
url="http://www.gnu.org/software/autoconf"
|
|
groups=('base-devel')
|
|
depends=('awk' 'm4' 'diffutils')
|
|
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('43d76649fb86cd21d64f68c48d5abdcf')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/opt
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
rm -rf "${pkgdir}/opt/share/info"
|
|
}
|