summaryrefslogtreecommitdiff
path: root/community/zile
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-28 00:05:59 -0800
committerroot <root@rshg054.dnsready.net>2013-01-28 00:05:59 -0800
commit1b9f6dc846379470b620b5dbb9d4d7acd1de148c (patch)
tree2305b950a3c94970b05c1a38af473f5cca95af02 /community/zile
parentb9b96ada56ad38df20b1e528a095a1e86ab67a2b (diff)
Mon Jan 28 00:05:59 PST 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
+}