diff options
author | root <root@rshg054.dnsready.net> | 2012-02-18 23:15:35 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-18 23:15:35 +0000 |
commit | 1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (patch) | |
tree | 24f65718bdb292fc62194464db8bee1348c48ee5 /community/arch | |
parent | b31146f2405c7d0f50bcc36b682af46be84cdeb8 (diff) |
Sat Feb 18 23:15:35 UTC 2012
Diffstat (limited to 'community/arch')
-rw-r--r-- | community/arch/PKGBUILD | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/community/arch/PKGBUILD b/community/arch/PKGBUILD index 2be3a270a..a39bf7740 100644 --- a/community/arch/PKGBUILD +++ b/community/arch/PKGBUILD @@ -1,27 +1,29 @@ -# $Id: PKGBUILD 46342 2011-05-05 11:48:15Z spupykin $ -# Maintainer: Judd Vinet <jvinet@zeroflux.org> +# $Id: PKGBUILD 64633 2012-02-17 13:20:14Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Judd Vinet <jvinet@zeroflux.org> -pkgname='arch' +pkgname=arch pkgver=1.3.5 -pkgrel=8 -pkgdesc="a modern and remarkable revision control system" +pkgrel=9 +pkgdesc='A modern and remarkable revision control system.' arch=('i686' 'x86_64') license=('GPL') -url="http://regexps.srparish.net/www/#Gnu-arch" +url='http://regexps.srparish.net/www/#Gnu-arch' depends=('zlib' 'expat' 'krb5') options=('!makeflags') -source=(ftp://ftp.gnu.org/gnu/gnu-arch/tla-$pkgver.tar.gz) +source=("ftp://ftp.gnu.org/gnu/gnu-arch/tla-${pkgver}.tar.gz") md5sums=('db31ee89bc4788eef1eba1cee6c176ef') build() { - cd "${srcdir}/tla-$pkgver/src" - mkdir =build - cd =build - ../configure --prefix /usr + cd "${srcdir}/tla-${pkgver}" + + mkdir build + cd build + ../src/configure --prefix /usr make } package() { - cd "${srcdir}/tla-$pkgver/src/=build" + cd "${srcdir}/tla-${pkgver}/build" make prefix="${pkgdir}/usr" install } |