diff options
Diffstat (limited to 'community/kshutdown')
-rw-r--r-- | community/kshutdown/PKGBUILD | 32 | ||||
-rw-r--r-- | community/kshutdown/kshutdown.install | 13 |
2 files changed, 0 insertions, 45 deletions
diff --git a/community/kshutdown/PKGBUILD b/community/kshutdown/PKGBUILD deleted file mode 100644 index 01108ab54..000000000 --- a/community/kshutdown/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $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: diff --git a/community/kshutdown/kshutdown.install b/community/kshutdown/kshutdown.install deleted file mode 100644 index 0583fc931..000000000 --- a/community/kshutdown/kshutdown.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - -# vim:set ts=2 sw=2 et: |