PKGBUILDs/extra/zile/PKGBUILD
2009-10-10 23:11:32 -05:00

21 lines
548 B
Bash

# 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=('arm')
url="http://www.gnu.org/software/zile/"
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
}