diff options
author | root <root@rshg054.dnsready.net> | 2011-11-25 23:14:55 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-11-25 23:14:55 +0000 |
commit | 6a642c093f29814cdd0fdefeee3ab9400eae490f (patch) | |
tree | f2edeb17bda6dbc9e784455f1b38f3fcc7e5b64a /kde-unstable/kdeutils-kcalc | |
parent | 5894dd675f4bd3ba296d262fae99b3b87a0f87fd (diff) |
Fri Nov 25 23:14:55 UTC 2011
Diffstat (limited to 'kde-unstable/kdeutils-kcalc')
-rw-r--r-- | kde-unstable/kdeutils-kcalc/PKGBUILD | 33 | ||||
-rw-r--r-- | kde-unstable/kdeutils-kcalc/kdeutils-kcalc.install | 11 |
2 files changed, 44 insertions, 0 deletions
diff --git a/kde-unstable/kdeutils-kcalc/PKGBUILD b/kde-unstable/kdeutils-kcalc/PKGBUILD new file mode 100644 index 000000000..c5ec6c1e4 --- /dev/null +++ b/kde-unstable/kdeutils-kcalc/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 143428 2011-11-24 16:16:47Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdeutils-kcalc +pkgver=4.7.80 +pkgrel=1 +pkgdesc='Scientific Calculator' +url='http://kde.org/applications/utilities/kcalc' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime') +makedepends=('cmake' 'automoc4') +groups=('kde' 'kdeutils') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kcalc-${pkgver}.tar.bz2") +sha1sums=('0fce57dbbd39028bb3b5749959368c35d8aa0442') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kcalc-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd $srcdir/build + make DESTDIR=$pkgdir install + cd $srcdir/build/doc + make DESTDIR=$pkgdir install +} diff --git a/kde-unstable/kdeutils-kcalc/kdeutils-kcalc.install b/kde-unstable/kdeutils-kcalc/kdeutils-kcalc.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdeutils-kcalc/kdeutils-kcalc.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |