summaryrefslogtreecommitdiff
path: root/community/arch
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/arch
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/arch')
-rw-r--r--community/arch/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/arch/PKGBUILD b/community/arch/PKGBUILD
new file mode 100644
index 000000000..a39bf7740
--- /dev/null
+++ b/community/arch/PKGBUILD
@@ -0,0 +1,29 @@
+# $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
+pkgver=1.3.5
+pkgrel=9
+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}"
+
+ mkdir build
+ cd build
+ ../src/configure --prefix /usr
+ make
+}
+
+package() {
+ cd "${srcdir}/tla-${pkgver}/build"
+ make prefix="${pkgdir}/usr" install
+}