desktop/kdegraphics-thumbnailers/PKGBUILD

34 lines
1.1 KiB
Bash
Raw Normal View History

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/libkdcraw
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'
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`)
2011-07-23 02:02:15 +08:00
build() {
2013-12-19 06:31:39 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DKDE4_BUILD_TESTS=ON \
2013-12-19 06:31:39 +08:00
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
make
2011-07-23 02:02:15 +08:00
}
package() {
2013-12-19 06:31:39 +08:00
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
2011-07-23 02:02:15 +08:00
}