diff options
Diffstat (limited to 'extra/zile/PKGBUILD')
-rw-r--r-- | extra/zile/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/zile/PKGBUILD b/extra/zile/PKGBUILD new file mode 100644 index 000000000..5a8334b7a --- /dev/null +++ b/extra/zile/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 125598 2011-05-26 20:47:05Z kevin $ +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Maintainer: Kevin Piche <kevin@archlinux.org> + +pkgname=zile +pkgver=2.3.24 +pkgrel=1 +pkgdesc="A small, fast, and powerful Emacs clone" +arch=(i686 x86_64 'mips64el') +url="http://www.gnu.org/software/zile/" +# Lua is not required, the author uses it to generate some source files. +makedepends=('help2man') +depends=('ncurses') +license=('GPL') +source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('fe77d801ba69e0fb9b4914a04b9ff506') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} + |