diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-14 00:07:43 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-14 00:07:43 -0300 |
commit | 6d90f2496f41209ab84d8b61d20b4d79d632ec7d (patch) | |
tree | 91a141bc21b17ccd6187b5c6a8b9f53367d9c93e /community/arch | |
parent | 26841be26f283b971f431eb735f748cef7a5250d (diff) | |
parent | 2c4629f613c001fd29740d0f4c0e497c771a2182 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/frogatto/PKGBUILD
community/python-psycopg2/PKGBUILD
core/libtirpc/PKGBUILD
extra/cd-discid/PKGBUILD
extra/cups/PKGBUILD
extra/cyrus-sasl/PKGBUILD
extra/evolution-data-server/PKGBUILD
extra/gnome-control-center/PKGBUILD
extra/gnugo/PKGBUILD
extra/gperf/PKGBUILD
extra/gtk2/PKGBUILD
extra/kdegames/PKGBUILD
extra/kismet/PKGBUILD
extra/lzo/PKGBUILD
extra/mutt/PKGBUILD
extra/obconf/PKGBUILD
extra/opensp/PKGBUILD
extra/qt3/PKGBUILD
extra/re2c/PKGBUILD
extra/samba/PKGBUILD
extra/sharutils/PKGBUILD
extra/wireshark/PKGBUILD
Diffstat (limited to 'community/arch')
-rw-r--r-- | community/arch/PKGBUILD | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/community/arch/PKGBUILD b/community/arch/PKGBUILD index 191df0ec5..de474a313 100644 --- a/community/arch/PKGBUILD +++ b/community/arch/PKGBUILD @@ -1,23 +1,27 @@ -# $Id: PKGBUILD 75248 2010-04-01 04:38:12Z allan $ +# $Id: PKGBUILD 46342 2011-05-05 11:48:15Z spupykin $ # Maintainer: Judd Vinet <jvinet@zeroflux.org> -pkgname=arch +pkgname='arch' pkgver=1.3.5 -pkgrel=7 +pkgrel=8 pkgdesc="a modern and remarkable revision control system" arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://regexps.srparish.net/www/#Gnu-arch" -depends=('zlib' 'expat' 'heimdal') +depends=('zlib' 'expat' 'krb5') +options=('!makeflags') 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 +} + +package() { + cd "${srcdir}/tla-$pkgver/src/=build" make prefix="${pkgdir}/usr" install } |