summaryrefslogtreecommitdiff
path: root/community/zile
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/zile
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/zile')
-rw-r--r--community/zile/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/zile/PKGBUILD b/community/zile/PKGBUILD
new file mode 100644
index 000000000..4ed801004
--- /dev/null
+++ b/community/zile/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 83186 2013-01-27 16:28:06Z pierre $
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+# Maintainer: Kevin Piche <kevin@archlinux.org>
+
+pkgname=zile
+pkgver=2.4.9
+pkgrel=1
+pkgdesc="A small, fast, and powerful Emacs clone"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/zile/"
+license=('GPL3')
+depends=('acl' 'gc' 'ncurses')
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha1sums=('f233487e2d0ce99d7670832d106d1a2503d4c925'
+ 'cfc6f526bd4f14e127b32f91ae3e414e58d722c3')
+
+build() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}