mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
24 lines
551 B
Bash
24 lines
551 B
Bash
|
# Maintainer: Alexander Foremny <alexanderforemny@gmail.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
|
||
|
}
|
||
|
|
||
|
# vim: set ft=sh ts=2 sw=2 et:
|