# $Id: PKGBUILD 253987 2015-12-08 18:07:26Z arojas $ # Maintainer (Arch): Ronald van Haren # Contributor (Arch): Andrea Scarpino # Contributor (Arch): Tobias Powalowski # Maintainer: André Silva # Contributor: Márcio Silva pkgbase=digikam pkgname=kipi-plugins pkgver=4.14.0 pkgrel=3.parabola1 pkgdesc="A collection of plugins extending the KDE graphics and image applications as digiKam, without nonfree jAlbum and SimpleViewer support" arch=('i686' 'x86_64') license=('GPL') url="http://www.digikam.org/" replaces=("${pkgname}-libre") conflicts=("${pkgname}-libre") makedepends=('kdepimlibs4' 'libkexiv2_4' 'libkdcraw4' 'libkipi4' 'libksane4' 'liblqr' 'opencv' 'boost' 'libgpod' 'libkvkontakte' 'hugin' 'libgphoto2' 'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt4-gstreamer' 'imagemagick' 'eigen' 'libbaloo4' 'libpgf' 'libusb-compat' 'libkface4' 'libkgeomap4' 'libmediawiki' 'clang') depends=('kdebase-runtime' 'kdepimlibs4' 'libkdcraw4' 'libkipi4' 'libksane4' 'libkexiv2_4') optdepends=('libkgeomap4: Geolocalize tool' 'libmediawiki: MediaWiki Export plugin' 'libkvkontakte: VKontakte.ru Exporter plugin' 'libgpod: iPodExport plugin' 'opencv: Remove Red Eyes plugin' 'imagemagick: Video SlideShow plugin' 'qt4-gstreamer: Video SlideShow plugin' 'hugin: panorama tools') options=('staticlibs') install=kipi-plugins.install source=("http://download.kde.org/stable/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2") sha1sums=('08bbded5433e442dce8ac00eb301606ef0924e8c') prepare() { cd ${srcdir}/${pkgbase}-${pkgver} # Fix compilation with clang sed -i '\|fno-tree-pre|d ' core/CMakeLists.txt sed -i '\|flashexport|d \|jalbumexport|d ' extra/kipi-plugins/CMakeLists.txt } build() { mkdir build cd build cmake ../${pkgbase}-${pkgver} \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_RPATH=ON \ -DBUILD_tests=OFF \ -DCMAKE_C_COMPILER=clang # Fix build with flex 2.6 make } package() { cd build/extra/kipi-plugins make DESTDIR="${pkgdir}" install cd ../../../build/po make DESTDIR="${pkgdir}" install # Put these in the relevant splitted packages #rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/libkgeomap.mo rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/digikam.mo # Fix conflicts with kde-l10n-* (FS#33762) rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/libkipi.mo cd ../../build/doc/kipi-plugins make DESTDIR="${pkgdir}" install }