diff options
author | root <root@rshg054.dnsready.net> | 2011-10-05 23:14:45 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-05 23:14:45 +0000 |
commit | 068f1f30c0bba25b6b88cefbe982a72535fa1951 (patch) | |
tree | 1cbc872f02ee675155a7dc79fc637b4f2ed7e5e8 /staging/kdegraphics-kolourpaint | |
parent | 3567a49f79d2dbf828b723ab54982fa6c7ea1c80 (diff) |
Wed Oct 5 23:14:44 UTC 2011
Diffstat (limited to 'staging/kdegraphics-kolourpaint')
-rw-r--r-- | staging/kdegraphics-kolourpaint/PKGBUILD | 31 | ||||
-rw-r--r-- | staging/kdegraphics-kolourpaint/kdegraphics-kolourpaint.install | 12 |
2 files changed, 43 insertions, 0 deletions
diff --git a/staging/kdegraphics-kolourpaint/PKGBUILD b/staging/kdegraphics-kolourpaint/PKGBUILD new file mode 100644 index 000000000..53006b45a --- /dev/null +++ b/staging/kdegraphics-kolourpaint/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 139810 2011-10-04 23:56:56Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegraphics-kolourpaint +pkgver=4.7.2 +pkgrel=1 +pkgdesc="Paint Program" +url="http://kde.org/applications/graphics/kolourpaint/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegraphics') +depends=('kdebase-runtime' 'qimageblitz') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/stable/${pkgver}/src/kolourpaint-${pkgver}.tar.bz2") +sha1sums=('d4ec3e463ea3d50731e9fc87cc52eec50bc67ff8') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kolourpaint-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} diff --git a/staging/kdegraphics-kolourpaint/kdegraphics-kolourpaint.install b/staging/kdegraphics-kolourpaint/kdegraphics-kolourpaint.install new file mode 100644 index 000000000..81ce5c4b0 --- /dev/null +++ b/staging/kdegraphics-kolourpaint/kdegraphics-kolourpaint.install @@ -0,0 +1,12 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |