mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
535 B
Bash
22 lines
535 B
Bash
# Maintainer: Alexander Foremny <alexanderforemny@gmail.com>
|
|
# Modified by OpenPogo
|
|
|
|
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')
|
|
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('fab0bd2c3990a6679adaf9eeac0c6d2a')
|
|
|
|
build() {
|
|
cd "$srcdir/automake-$pkgver"
|
|
|
|
./configure --prefix=/opt
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|