diff options
Diffstat (limited to 'community/krecipes/PKGBUILD')
-rw-r--r-- | community/krecipes/PKGBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/community/krecipes/PKGBUILD b/community/krecipes/PKGBUILD index fb2fa4336..3328af055 100644 --- a/community/krecipes/PKGBUILD +++ b/community/krecipes/PKGBUILD @@ -7,7 +7,7 @@ pkgname=krecipes pkgver=2.0beta2 _pkgver=2.0-beta2 -pkgrel=1 +pkgrel=2 pkgdesc="A tool designed to make organizing your personal recipes collection fast and easy" arch=('i686' 'x86_64') url="http://extragear.kde.org/apps/krecipes/" @@ -21,8 +21,10 @@ md5sums=('4c01ccad7ad1409cb35c824a61250fe2') build() { cd ${srcdir} + mkdir build cd build + cmake ../${pkgname}-${_pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr @@ -31,5 +33,6 @@ build() { package() { cd ${srcdir}/build + make DESTDIR=${pkgdir} install } |