summaryrefslogtreecommitdiff
path: root/community/kshutdown/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/kshutdown/PKGBUILD
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/kshutdown/PKGBUILD')
-rw-r--r--community/kshutdown/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/kshutdown/PKGBUILD b/community/kshutdown/PKGBUILD
new file mode 100644
index 000000000..01108ab54
--- /dev/null
+++ b/community/kshutdown/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 93787 2013-07-10 09:09:23Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Tobias Powalowski <tpowa@archlinux.org>
+
+pkgname=kshutdown
+pkgver=3.0
+pkgrel=1
+pkgdesc='Shutdown Utility for KDE'
+arch=('x86_64' 'i686')
+url='http://kshutdown.sourceforge.net/'
+license=('GPL')
+depends=('kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.zip")
+sha256sums=('71295e88e30538e6bc9aceb0ba2d60c2bb6c47739a97ee76f7f1f767044493ee')
+
+build() {
+ mkdir "$srcdir/build"
+ cd "$srcdir/build"
+ cmake "../$pkgname-$pkgver" \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/build"
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: