summaryrefslogtreecommitdiff
path: root/community/kshutdown/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/kshutdown/PKGBUILD')
-rw-r--r--community/kshutdown/PKGBUILD13
1 files changed, 6 insertions, 7 deletions
diff --git a/community/kshutdown/PKGBUILD b/community/kshutdown/PKGBUILD
index 01108ab54..5bde9df87 100644
--- a/community/kshutdown/PKGBUILD
+++ b/community/kshutdown/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 93787 2013-07-10 09:09:23Z arodseth $
+# $Id: PKGBUILD 106386 2014-03-02 00:23:09Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
pkgname=kshutdown
-pkgver=3.0
+pkgver=3.2
pkgrel=1
pkgdesc='Shutdown Utility for KDE'
arch=('x86_64' 'i686')
@@ -13,11 +13,11 @@ depends=('kdebase-workspace')
makedepends=('cmake' 'automoc4')
install="$pkgname.install"
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.zip")
-sha256sums=('71295e88e30538e6bc9aceb0ba2d60c2bb6c47739a97ee76f7f1f767044493ee')
+sha256sums=('8be6c2a15bb539919f94ec0caf20f00b144185f996b7663c464fbf7ce8f4a39f')
build() {
- mkdir "$srcdir/build"
- cd "$srcdir/build"
+ mkdir build
+ cd build
cmake "../$pkgname-$pkgver" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
@@ -25,8 +25,7 @@ build() {
}
package() {
- cd "$srcdir/build"
- make DESTDIR="$pkgdir" install
+ make -C build DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: