blob: 648f29206d6e0dbeab232323e49a8e924f97012e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $Id: PKGBUILD 75248 2010-04-01 04:38:12Z allan $
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
pkgname=arch
pkgver=1.3.5
pkgrel=7
pkgdesc="a modern and remarkable revision control system"
arch=('i686' 'x86_64')
license=('GPL')
url="http://regexps.srparish.net/www/#Gnu-arch"
depends=('zlib' 'expat' 'heimdal')
source=(ftp://ftp.gnu.org/gnu/gnu-arch/tla-$pkgver.tar.gz)
md5sums=('db31ee89bc4788eef1eba1cee6c176ef')
options=('!makeflags')
build() {
cd "${srcdir}/tla-$pkgver/src"
mkdir =build
cd =build
../configure --prefix /usr
make || return 1
make prefix="${pkgdir}/usr" install
}
|