diff options
author | root <root@rshg054.dnsready.net> | 2013-08-20 02:15:20 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-20 02:15:20 -0700 |
commit | 1ae31a85e191bbf7313077b472a66d1c24af1f74 (patch) | |
tree | 91f021858c2e33e1a6633c12b80e54105fd7500b /extra/kdesdk-dolphin-plugins/PKGBUILD | |
parent | 26606f981048ee9efcda690b619d3c53501a7a58 (diff) |
Tue Aug 20 02:14:51 PDT 2013
Diffstat (limited to 'extra/kdesdk-dolphin-plugins/PKGBUILD')
-rw-r--r-- | extra/kdesdk-dolphin-plugins/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/extra/kdesdk-dolphin-plugins/PKGBUILD b/extra/kdesdk-dolphin-plugins/PKGBUILD new file mode 100644 index 000000000..6321e38ba --- /dev/null +++ b/extra/kdesdk-dolphin-plugins/PKGBUILD @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdesdk-dolphin-plugins +pkgver=4.11.0 +pkgrel=1 +pkgdesc='Extra Dolphin plugins' +url='https://projects.kde.org/projects/kde/kdesdk/dolphin-plugins' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdesdk') +depends=('kdebase-runtime' 'kdebase-lib') +makedepends=('cmake' 'automoc4') +optdepends=('bzr: bazaar support' + 'git: git support' + 'mercurial: hg support' + 'subversion: svn support') +install=${pkgname}.install +source=("http://download.kde.org/stable/${pkgver}/src/dolphin-plugins-${pkgver}.tar.xz") +sha1sums=('e58a4908dfcfcab93dc39dfe465df074153df81d') + +build() { + mkdir build + cd build + cmake ../dolphin-plugins-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE4_BUILD_TESTS=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR=$pkgdir install +} |