diff options
Diffstat (limited to 'community-testing/arch/PKGBUILD')
-rw-r--r-- | community-testing/arch/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community-testing/arch/PKGBUILD b/community-testing/arch/PKGBUILD new file mode 100644 index 000000000..2be3a270a --- /dev/null +++ b/community-testing/arch/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 46342 2011-05-05 11:48:15Z spupykin $ +# Maintainer: Judd Vinet <jvinet@zeroflux.org> + +pkgname='arch' +pkgver=1.3.5 +pkgrel=8 +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' 'krb5') +options=('!makeflags') +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 + make +} + +package() { + cd "${srcdir}/tla-$pkgver/src/=build" + make prefix="${pkgdir}/usr" install +} |