mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
514 B
Bash
21 lines
514 B
Bash
# Maintainer: Mike Staszel <mikestaszel@openpogo.com>
|
|
|
|
pkgname=automake
|
|
pkgver=1.11
|
|
pkgrel=1
|
|
pkgdesc="A GNU tool for automatically creating Makefiles"
|
|
arch=('arm')
|
|
license=('GPL')
|
|
url="http://www.gnu.org/software/automake"
|
|
groups=('base-devel')
|
|
depends=('perl' 'bash')
|
|
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('fab0bd2c3990a6679adaf9eeac0c6d2a')
|
|
|
|
build() {
|
|
cd "$srcdir/automake-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|