diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-02-14 10:53:59 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-02-14 10:53:59 +0100 |
commit | 02e61c89c8b9d79879335bfbd66f9e6b59982848 (patch) | |
tree | fca57eeca21f97a06309051f625a2b7517b1ec71 /community/kshutdown | |
parent | 846195ec63b8881bda11580883ec06ae821a2669 (diff) | |
parent | 0bf564cf7a3d99207457267c75f92ceb67197537 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/erlang/PKGBUILD
community/ettercap/PKGBUILD
community/fcitx-mozc/PKGBUILD
community/libgexiv2/PKGBUILD
community/xmlrpc-c/PKGBUILD
extra/pidgin/PKGBUILD
extra/xorg-xrandr/PKGBUILD
Diffstat (limited to 'community/kshutdown')
-rw-r--r-- | community/kshutdown/PKGBUILD | 34 | ||||
-rw-r--r-- | community/kshutdown/kshutdown.install | 2 |
2 files changed, 20 insertions, 16 deletions
diff --git a/community/kshutdown/PKGBUILD b/community/kshutdown/PKGBUILD index 9803fb1f2..d46b40b1b 100644 --- a/community/kshutdown/PKGBUILD +++ b/community/kshutdown/PKGBUILD @@ -1,30 +1,32 @@ -# $Id: PKGBUILD 83158 2013-01-27 16:19:25Z pierre $ -# Maintainer: Tobias Powalowski <tpowa@archlinux.org> +# $Id: PKGBUILD 84190 2013-02-13 13:42:33Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Tobias Powalowski <tpowa@archlinux.org> pkgname=kshutdown -pkgver=3.0beta5 +pkgver=3.0beta6 pkgrel=1 -pkgdesc="Shutdown Utility for KDE" -arch=('i686' 'x86_64') -url="http://kshutdown.sourceforge.net/" +pkgdesc='Shutdown Utility for KDE' +arch=('x86_64' 'i686') +url='http://kshutdown.sourceforge.net/' license=('GPL') depends=('kdebase-workspace') makedepends=('cmake' 'automoc4') install='kshutdown.install' -source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-source-${pkgver}.zip") -sha1sums=('108e27a7d1cef505c296656f92ab071d8c53bce3') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.zip") +sha256sums=('dfe89f124e68ae3f5b859fc02ad4d37726b3e001ee6b02f1bb1f6281fbef45cf') build() { - cd "${srcdir}" - mkdir build - cd build - cmake ../${pkgname}-${pkgver} \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr + 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 + cd "$srcdir/build" + make DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et: diff --git a/community/kshutdown/kshutdown.install b/community/kshutdown/kshutdown.install index 1c0de2e4f..0583fc931 100644 --- a/community/kshutdown/kshutdown.install +++ b/community/kshutdown/kshutdown.install @@ -9,3 +9,5 @@ post_upgrade() { post_remove() { post_install } + +# vim:set ts=2 sw=2 et: |