Date: Wednesday, February 13, 2013 @ 14:42:22 Author: arodseth Revision: 84189
upgpkg: kshutdown 3.0beta6-1 Modified: kshutdown/trunk/PKGBUILD kshutdown/trunk/kshutdown.install -------------------+ PKGBUILD | 32 +++++++++++++++++--------------- kshutdown.install | 2 ++ 2 files changed, 19 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-02-13 13:24:10 UTC (rev 84188) +++ PKGBUILD 2013-02-13 13:42:22 UTC (rev 84189) @@ -1,30 +1,32 @@ # $Id$ -# Maintainer: Tobias Powalowski <[email protected]> +# Maintainer: Alexander Rødseth <[email protected]> +# Contributor: Tobias Powalowski <[email protected]> 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: Modified: kshutdown.install =================================================================== --- kshutdown.install 2013-02-13 13:24:10 UTC (rev 84188) +++ kshutdown.install 2013-02-13 13:42:22 UTC (rev 84189) @@ -9,3 +9,5 @@ post_remove() { post_install } + +# vim:set ts=2 sw=2 et:
