# $Id: PKGBUILD 220422 2017-04-03 17:11:32Z spupykin $ # Maintainer (Arch): Sergej Pupykin # Contributor (Arch): Christian Himpel # Contributor (Arch): Johannes Hanika # Maintainer: Márcio Silva pkgname=darktable epoch=2 pkgver=2.2.4 pkgrel=1.nonprism1 pkgdesc="Utility to organize and develop raw images, without flickcurl support" arch=('i686' 'x86_64' 'armv7h') url=http://darktable.sf.net/ license=('GPL3') replaces=(${pkgname}-nonprism) conflicts=(${pkgname}-nonprism) depends=('exiv2>=0.18' 'lcms2' 'lensfun>=0.2.3' 'desktop-file-utils' 'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt' 'libsoup' 'gtk3' 'pugixml' 'json-glib' 'lua52' 'colord' 'colord-gtk' 'graphicsmagick' 'osm-gps-map') makedepends=('intltool>=0.40' 'cmake' 'librsvg' 'osm-gps-map' 'libcups') optdepends=('librsvg' 'libcups') validpgpkeys=('C4CBC150699956E2A3268EF5BB5CC8295B1779C9') # even releases are stable, do not change source url! source=("https://github.com/darktable-org/darktable/releases/download/release-${pkgver}/darktable-${pkgver/rc/.rc}.tar.xz"{,.asc}) sha256sums=('bd5445d6b81fc3288fb07362870e24bb0b5378cacad2c6e6602e32de676bf9d8' 'SKIP') build() { cd "$srcdir/$pkgname-${pkgver/rc/~rc}" mkdir -p build cd build CXXFLAGS+=" -fpermissive" cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib \ -DCMAKE_BUILD_TYPE=Release \ -DBINARY_PACKAGE_BUILD=1 \ -DBUILD_USERMANUAL=False \ -DUSE_LIBSECRET=On \ -DUSE_LUA=On \ -DUSE_GNOME_KEYRING=Off \ -DUSE_COLORD=On \ -DPROJECT_VERSION=$pkgver \ -DUSE_USE_FLICKR=Off \ .. make cd ../tools/basecurve cmake . make } package() { cd "$srcdir/$pkgname-${pkgver/rc/~rc}/build" make DESTDIR="$pkgdir" install ln -s darktable/libdarktable.so "$pkgdir/usr/lib/libdarktable.so" install -Dm0755 ../tools/basecurve/dt-curve-tool "$pkgdir"/usr/bin/dt-curve-tool install -Dm0755 ../tools/basecurve/dt-curve-tool-helper "$pkgdir"/usr/bin/dt-curve-tool-helper }