author | Andrea Scarpino
<andrea@archlinux.org> 2011-11-15 06:10:39 UTC |
committer | Andrea Scarpino
<andrea@archlinux.org> 2011-11-15 06:10:39 UTC |
parent | 7d271602262eb6b11a4266d79f23c6acaf1c3f02 |
PKGBUILD | +5 | -5 |
diff --git a/PKGBUILD b/PKGBUILD index 80ce8e3..c92042e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=attica -pkgver=0.2.0 +pkgver=0.2.9 pkgrel=1 pkgdesc='A library to access Open Collaboration Service providers' arch=('i686' 'x86_64') @@ -10,10 +10,10 @@ license=('LGPL') depends=('qt') makedepends=('cmake') source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -md5sums=('df3dcea0229cfa31539bdd427976e15b') +md5sums=('7dadb6ca7dec09f89d41cd868ea6dc39') 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 }