2018-03-10 20:28:11 +00:00
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux,org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove makedepend on vc
|
|
|
|
|
|
|
|
pkgname=krita
|
2019-03-06 13:23:07 +00:00
|
|
|
pkgver=4.1.8
|
2019-05-20 22:51:57 +00:00
|
|
|
pkgrel=3
|
2018-03-10 20:28:11 +00:00
|
|
|
pkgdesc="Edit and paint images"
|
|
|
|
arch=(x86_64)
|
|
|
|
url="https://krita.org"
|
|
|
|
license=(GPL3)
|
2018-12-12 13:38:21 +00:00
|
|
|
depends=(kitemviews kitemmodels ki18n kcompletion karchive kguiaddons kcrash qt5-svg qt5-multimedia
|
|
|
|
gsl libraw exiv2 openexr fftw curl boost-libs giflib hicolor-icon-theme desktop-file-utils)
|
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)
|
2019-04-06 15:58:17 +00:00
|
|
|
source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz"{,.sig}
|
|
|
|
krita-qtabletevent.patch)
|
|
|
|
sha256sums=('0476c9e2279f0ae690c2ed02e1aa9c3d491943643f9859355a02657318bd5940'
|
|
|
|
'SKIP'
|
|
|
|
'28adbd1f2218e7088ca0e4b4e46ae01ab29e21f60289df7a53f18869a3482233')
|
2018-03-10 20:28:11 +00:00
|
|
|
validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt <foundation@krita.org>
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
2019-04-06 15:58:17 +00:00
|
|
|
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
patch -p1 -i ../krita-qtabletevent.patch # Workaround tablet issues with Qt 5.12 https://cgit.kde.org/krita.git/commit/?id=a3193fe2
|
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
|
|
|
|
}
|