mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
548 B
Bash
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
|
|
}
|