Date: Saturday, March 25, 2017 @ 01:05:28 Author: arojas Revision: 291397
archrelease: copy kde-unstable to kde-unstable-x86_64 Added: gwenview/repos/kde-unstable-x86_64/ gwenview/repos/kde-unstable-x86_64/PKGBUILD (from rev 291396, gwenview/kde-unstable/PKGBUILD) ----------+ PKGBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) Copied: gwenview/repos/kde-unstable-x86_64/PKGBUILD (from rev 291396, gwenview/kde-unstable/PKGBUILD) =================================================================== --- kde-unstable-x86_64/PKGBUILD (rev 0) +++ kde-unstable-x86_64/PKGBUILD 2017-03-25 01:05:28 UTC (rev 291397) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=gwenview +pkgver=17.03.80 +pkgrel=1 +pkgdesc="A fast and easy to use image viewer for KDE" +url='https://kde.org/applications/graphics/gwenview/' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde-applications' 'kdegraphics') +depends=('kactivities' 'baloo' 'libkipi' 'libkdcraw' 'kparts' 'kitemmodels') +optdepends=('qt5-imageformats: support for tiff, webp, and more image formats' + 'kimageformats: support for dds, xcf, exr, psd, and more image formats' + 'kipi-plugins: export to various online services') +makedepends=('extra-cmake-modules' 'kdoctools' 'python') +replaces=('kdegraphics-gwenview') +conflicts=('kdegraphics-gwenview') +source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('4cdd4c87426fa8b7fefb8172a57647e84f1830deaebf5b800e4f4024e3913016' + 'SKIP') +validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid <aa...@kde.org> + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../$pkgname-$pkgver \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DKDE_INSTALL_LIBDIR=lib \ + -DGWENVIEW_SEMANTICINFO_BACKEND="Baloo" \ + -DBUILD_TESTING=OFF + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}