PKGBUILDs/extra/zile/PKGBUILD
2009-10-09 21:23:22 -05:00

23 lines
678 B
Bash

# $Id: PKGBUILD 51627 2009-09-10 00:42:06Z kevin $
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Maintainer: Kevin Piche <kevin@archlinux.org>
pkgname=zile
pkgver=2.3.11
pkgrel=1
pkgdesc="A small, fast, and powerful Emacs clone"
arch=(i686 x86_64)
url="http://www.gnu.org/software/zile/"
# Lua is not required, the author uses it to generate some source files.
makedepends=('help2man')
depends=('ncurses>=5.6-7')
license=('GPL')
source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('eda8745c2681dd7bea478496c0178e90')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
}