diff options
author | root <root@rshg054.dnsready.net> | 2011-08-21 23:14:35 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-08-21 23:14:35 +0000 |
commit | e9a5c646563c984f362db1777f8c6bc7da63a4ab (patch) | |
tree | 709694a1605c0b60dc9c0c57718e7fd661924646 /extra/zile | |
parent | 839141249778baa4dba0f0511c52b5eded3cd934 (diff) |
Sun Aug 21 23:14:34 UTC 2011
Diffstat (limited to 'extra/zile')
-rw-r--r-- | extra/zile/PKGBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/extra/zile/PKGBUILD b/extra/zile/PKGBUILD index 8ada94ea7..e1457b41b 100644 --- a/extra/zile/PKGBUILD +++ b/extra/zile/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 125598 2011-05-26 20:47:05Z kevin $ +# $Id: PKGBUILD 135981 2011-08-21 03:51:34Z eric $ # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Maintainer: Kevin Piche <kevin@archlinux.org> @@ -9,20 +9,19 @@ 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') license=('GPL') source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('fe77d801ba69e0fb9b4914a04b9ff506') build() { - cd ${srcdir}/${pkgname}-${pkgver} + cd "${srcdir}"/${pkgname}-${pkgver} ./configure --prefix=/usr make } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install + cd "${srcdir}"/${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install } |