diff options
author | root <root@rshg047.dnsready.net> | 2011-06-11 22:48:58 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-11 22:48:58 +0000 |
commit | e392819937e37aa7f33ba83bb3e23bb1ccabaa37 (patch) | |
tree | 973aad7153fa658dce8cc60d9fc78f41c2dfa578 /testing/kdebase-runtime | |
parent | 8bb6e3c7e5bec1adf2c819a1985de4d1f3347fb6 (diff) |
Sat Jun 11 22:48:58 UTC 2011
Diffstat (limited to 'testing/kdebase-runtime')
-rw-r--r-- | testing/kdebase-runtime/PKGBUILD | 38 | ||||
-rw-r--r-- | testing/kdebase-runtime/kdebase-runtime.install | 12 |
2 files changed, 50 insertions, 0 deletions
diff --git a/testing/kdebase-runtime/PKGBUILD b/testing/kdebase-runtime/PKGBUILD new file mode 100644 index 000000000..4479b4d31 --- /dev/null +++ b/testing/kdebase-runtime/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 126530 2011-06-06 06:06:00Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=kdebase-runtime +pkgver=4.6.4 +pkgrel=1 +pkgdesc="KDE Base Runtime Environment" +arch=('i686' 'x86_64') +url='http://www.kde.org' +license=('GPL' 'LGPL') +depends=('kdelibs' 'ntrack' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' + 'xorg-xauth' 'hicolor-icon-theme') +makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'xine-lib') +optdepends=('htdig: to build the search index in khelpcenter' + 'rarian: needed by khelpcenter' + 'gdb: drkonq crash handler') +install="${pkgname}.install" +source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('63f30be47a4b592a0820ed200004543e7cba956d') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=ON \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "$srcdir/build" + make DESTDIR="$pkgdir" install + rm -f "${pkgdir}/usr/share/icons/hicolor/index.theme" + ln -sf /usr/lib/kde4/libexec/kdesu "${pkgdir}/usr/bin/" +} diff --git a/testing/kdebase-runtime/kdebase-runtime.install b/testing/kdebase-runtime/kdebase-runtime.install new file mode 100644 index 000000000..3f06b8deb --- /dev/null +++ b/testing/kdebase-runtime/kdebase-runtime.install @@ -0,0 +1,12 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-mime-database usr/share/mime &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |