desktop/kdegraphics-thumbnailers/PKGBUILD

34 lines
1.1 KiB
Bash

# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/kdegraphics-thumbnailers/
# Include global configuration
source ../kdeapps.conf
pkgname=kdegraphics-thumbnailers
pkgver=${_kdever}
pkgrel=1
pkgdesc='Thumbnailers for various graphics file formats'
arch=('x86_64')
url='https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers'
license=('GPL' 'LGPL' 'FDL')
depends=('libkexiv2' 'libkdcraw')
makedepends=('pkg-config' 'cmake' 'automoc4')
groups=('kde' 'kdegraphics' 'kde-uninstall')
options=('docs' '!header' 'debug' 'log')
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d" " -f1`)
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DKDE4_BUILD_TESTS=ON \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}