2015-08-11 05:26:57 +08:00
|
|
|
# Include global configuration
|
|
|
|
source ../kdeapps.conf
|
|
|
|
|
|
|
|
pkgname=dolphin-plugins
|
|
|
|
pkgver=${_kdever}
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc='Dolphin plugins'
|
|
|
|
url="http://www.kde.org"
|
|
|
|
arch=('x86_64')
|
|
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
|
|
depends=('dolphin')
|
|
|
|
makedepends=('extra-cmake-modules' 'kdoctools')
|
|
|
|
conflicts=('kdesdk-dolphin-plugins')
|
|
|
|
replaces=('kdesdk-dolphin-plugins')
|
|
|
|
groups=('kde' 'kde-uninstall' 'kde-applications' 'kdesdk')
|
|
|
|
options=('docs' 'debug')
|
2016-12-21 05:48:24 +08:00
|
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
|
|
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
|
|
|
|
'SKIP')
|
2017-08-11 00:14:23 +08:00
|
|
|
validpgpkeys=(${Avalidpgpkeys[@]})
|
2015-08-11 05:26:57 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|