diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/arch/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/arch/PKGBUILD')
-rw-r--r-- | community/arch/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/arch/PKGBUILD b/community/arch/PKGBUILD new file mode 100644 index 000000000..648f29206 --- /dev/null +++ b/community/arch/PKGBUILD @@ -0,0 +1,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 +} |