desktop/kdegraphics-thumbnailers/PKGBUILD

34 lines
901 B
Bash
Raw Normal View History

# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/kdegraphics-thumbnailers/
2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2011-07-23 02:02:15 +08:00
pkgname=kdegraphics-thumbnailers
pkgver=${_kdever}
2014-02-01 19:24:18 +08:00
pkgrel=1
2013-12-19 06:31:39 +08:00
pkgdesc='Thumbnailers for various graphics file formats'
2012-11-18 01:07:54 +08:00
arch=('x86_64')
2013-12-19 06:31:39 +08:00
url='https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers'
2015-12-05 07:26:22 +08:00
license=(GPL LGPL FDL)
depends=(libkexiv2 libkdcraw kio)
makedepends=(extra-cmake-modules)
groups=('kde' 'kdegraphics' 'kde-uninstall')
options=('docs' 'debug')
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[@]})
2011-07-23 02:02:15 +08:00
2015-12-05 07:26:22 +08:00
prepare() {
mkdir -p build
}
build() {
2015-12-05 07:26:22 +08:00
cd build
cmake_kf5 ../${pkgname}-${pkgver}
2013-12-19 06:31:39 +08:00
make
2011-07-23 02:02:15 +08:00
}
package() {
2015-12-05 07:26:22 +08:00
cd build
2013-12-19 06:31:39 +08:00
make DESTDIR=${pkgdir} install
2015-12-05 07:26:22 +08:00
}