2018-03-10 20:28:11 +00:00
|
|
|
# $Id: PKGBUILD 262594 2016-03-26 20:49:29Z arojas $
|
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux,org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove makedepend on vc
|
|
|
|
|
|
|
|
pkgname=krita
|
2018-06-27 12:31:14 +00:00
|
|
|
pkgver=4.1.0
|
2018-07-12 00:16:28 +00:00
|
|
|
pkgrel=2
|
2018-03-10 20:28:11 +00:00
|
|
|
pkgdesc="Edit and paint images"
|
|
|
|
arch=(x86_64)
|
|
|
|
url="https://krita.org"
|
|
|
|
license=(GPL3)
|
2018-04-09 12:44:09 +00:00
|
|
|
depends=(kio kitemmodels gsl libraw exiv2 openexr fftw curl boost-libs giflib qt5-declarative hicolor-icon-theme)
|
2018-07-12 00:16:28 +00:00
|
|
|
makedepends=(extra-cmake-modules kdoctools boost eigen poppler-qt5 opencolorio python-pyqt5 libheif sip python-sip)
|
2018-03-22 12:16:27 +00:00
|
|
|
optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 'opencolorio: for the LUT docker'
|
2018-06-27 12:31:14 +00:00
|
|
|
"krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python plugins' 'libheif: HEIF filter')
|
2018-03-10 20:28:11 +00:00
|
|
|
conflicts=(calligra-krita krita-l10n)
|
|
|
|
replaces=(calligra-krita krita-l10n)
|
2018-07-12 00:16:28 +00:00
|
|
|
source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz"{,.sig}
|
|
|
|
krita-pyqt5.11.patch)
|
2018-06-27 12:31:14 +00:00
|
|
|
sha256sums=('78792df8165b986b806dcf9960a2679f683f2263e06f3ad5a24b0f78d8f27ed5'
|
2018-07-12 00:16:28 +00:00
|
|
|
'SKIP'
|
|
|
|
'37aa93119c759d80829112f169f64c47450f218e0fe05fc2e16ae54ff8170db2')
|
2018-03-10 20:28:11 +00:00
|
|
|
validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt <foundation@krita.org>
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
2018-07-12 00:16:28 +00:00
|
|
|
cd $pkgname-$pkgver
|
|
|
|
patch -p1 -i ../krita-pyqt5.11.patch # Fix python plugins with PyQt 5.11
|
2018-03-10 20:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
|
|
|
cmake ../$pkgname-$pkgver \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
|
|
-DBUILD_TESTING=OFF
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|