author | Andrea Scarpino
<andrea@archlinux.org> 2011-06-24 16:39:02 UTC |
committer | Andrea Scarpino
<andrea@archlinux.org> 2011-06-24 16:39:02 UTC |
parent | 9de606c1e1421a9b91922b4c8a0eef8a3294e11a |
PKGBUILD | +5 | -5 |
diff --git a/PKGBUILD b/PKGBUILD index 5f16297..19b7a9b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=grantlee -pkgver=0.1.8 +pkgver=0.1.9 pkgrel=1 pkgdesc="A string template engine based on the Django template system and written in Qt" arch=('i686' 'x86_64') @@ -10,10 +10,10 @@ license=('LGPL3') depends=('qt') makedepends=('cmake') source=("http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz") -md5sums=('67c24d9eb6be66997ac5d0803bde06de') +md5sums=('3d93b5312814ebee373fba5509d88bdb') build() { - cd ${srcdir} + cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -23,6 +23,6 @@ build() { } package() { - cd ${srcdir}/build - make DESTDIR=${pkgdir} install + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install }