2014-01-13 00:22:06 +08:00
|
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
|
|
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
|
2013-12-18 02:36:04 +08:00
|
|
|
|
|
|
|
# Include global configuration
|
2013-06-19 07:07:07 +08:00
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
2014-01-13 00:44:58 +08:00
|
|
|
pkgname="dolphin-plugins"
|
2013-06-19 07:07:07 +08:00
|
|
|
arch=('x86_64')
|
|
|
|
pkgver=${_kdever}
|
2014-01-13 00:44:58 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc='Dolphin plugins'
|
2013-06-19 07:07:07 +08:00
|
|
|
url="http://www.kde.org"
|
|
|
|
license=('GPL' 'LGPL' 'FDL')
|
2014-01-13 00:44:58 +08:00
|
|
|
depends=("dolphin>=${_kdever}" 'subversion' 'git' "kdesdk-kompare>=${_kdever}")
|
2013-06-19 07:07:07 +08:00
|
|
|
optdepends=('bzr: bazaar support'
|
|
|
|
'git: git support'
|
|
|
|
'mercurial: hg support'
|
|
|
|
'subversion: svn support')
|
2014-01-13 00:44:58 +08:00
|
|
|
provides=('kdesdk-dolphin-plugins')
|
|
|
|
conflicts=('kdesdk-dolphin-plugins')
|
|
|
|
replaces=('kdesdk-dolphin-plugins')
|
2013-06-19 07:07:07 +08:00
|
|
|
categories=('programming')
|
2014-01-13 00:44:58 +08:00
|
|
|
install=dolphin-plugins.install
|
2013-07-24 08:15:53 +08:00
|
|
|
options=('docs' '!header' 'debug' 'log')
|
2013-06-19 07:07:07 +08:00
|
|
|
makedepends=('pkg-config' 'cmake' 'automoc4' 'docbook-xsl')
|
|
|
|
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
|
2014-01-11 20:59:04 +08:00
|
|
|
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
2013-06-19 07:07:07 +08:00
|
|
|
|
|
|
|
build() {
|
2014-01-13 00:44:58 +08:00
|
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
|
|
cmake . \
|
|
|
|
-DCMAKE_BUILD_TYPE=${_build_type} \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
|
|
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
|
|
make
|
2013-06-19 07:07:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2014-01-13 00:44:58 +08:00
|
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
2013-06-19 07:07:07 +08:00
|
|
|
}
|