diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-02-09 10:32:20 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-02-09 10:32:20 -0300 |
commit | 6cc893589a6bd208f2b7711f985e17df7a6df816 (patch) | |
tree | c41cb07e4e88c4eff5bc05e44b86b860f96654b8 /community/zile | |
parent | 5995e8be41750a8ac397ac358f5c2bedca3a4d1e (diff) | |
parent | f0ab416208be17c176b9430a3537f05b5c653aec (diff) |
Merge branch 'master' of gparabola:abslibre-mips64el
Diffstat (limited to 'community/zile')
-rw-r--r-- | community/zile/PKGBUILD | 26 |
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 +} |