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
|
2020-10-29 13:51:15 +00:00
|
|
|
_pkgver=4.4.1
|
2020-06-18 02:28:08 +00:00
|
|
|
pkgver=${_pkgver/-/}
|
2021-01-05 19:56:51 +00:00
|
|
|
pkgrel=8
|
2018-03-10 20:28:11 +00:00
|
|
|
pkgdesc="Edit and paint images"
|
|
|
|
arch=(x86_64)
|
|
|
|
url="https://krita.org"
|
|
|
|
license=(GPL3)
|
2020-06-18 02:28:08 +00:00
|
|
|
depends=(kitemviews kitemmodels ki18n kcompletion kguiaddons kcrash qt5-svg qt5-multimedia quazip
|
2020-12-13 18:49:36 +00:00
|
|
|
gsl libraw exiv2 openexr fftw giflib openjpeg2 hicolor-icon-theme)
|
2019-11-25 23:59:01 +00:00
|
|
|
makedepends=(extra-cmake-modules kdoctools boost eigen poppler-qt5 opencolorio python-pyqt5 libheif
|
2021-01-05 19:56:51 +00:00
|
|
|
qt5-tools sip4 python-sip4 kseexpr)
|
2018-03-22 12:16:27 +00:00
|
|
|
optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 'opencolorio: for the LUT docker'
|
2020-10-13 17:19:02 +00:00
|
|
|
"krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python plugins' 'libheif: HEIF filter'
|
2020-11-16 17:59:41 +00:00
|
|
|
'kseexpr: SeExpr generator layer' 'kimageformats: PSD support')
|
|
|
|
source=("https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz"{,.sig}
|
2020-12-13 18:49:36 +00:00
|
|
|
krita-kseexpr.patch::"https://invent.kde.org/graphics/krita/commit/bdebaf91.patch"
|
|
|
|
krita-c++14.patch)
|
2020-10-29 13:51:15 +00:00
|
|
|
sha256sums=('6f2daf068e4e5cef8a738ab47da443dc82ad1463090a4a1544b35201272c3817'
|
2020-11-16 17:59:41 +00:00
|
|
|
'SKIP'
|
2020-12-13 18:49:36 +00:00
|
|
|
'6aeec0c8d6bc29ae81e7dd1d971663c32cc0137888da4a1b4f50a69fc4491d80'
|
|
|
|
'de84c3c1685e48392d4fb07daab56068cacfc2a846a52a9915b5f3e08357abd1')
|
2020-10-13 17:19:02 +00:00
|
|
|
validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD' # Boudewijn Rempt <foundation@krita.org>
|
|
|
|
'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F') # Dmitry Kazakov (main key) <dimula73@gmail.com>
|
2018-03-10 20:28:11 +00:00
|
|
|
|
2020-11-16 17:59:41 +00:00
|
|
|
prepare() {
|
|
|
|
patch -d $pkgname-$pkgver -p1 -i ../krita-kseexpr.patch # Port to rebranded seexpr
|
2020-12-13 18:49:36 +00:00
|
|
|
patch -d $pkgname-$pkgver -p1 -i ../krita-c++14.patch # Fix build with boost 1.75
|
2020-11-16 17:59:41 +00:00
|
|
|
}
|
|
|
|
|
2018-03-10 20:28:11 +00:00
|
|
|
build() {
|
2020-06-18 02:28:08 +00:00
|
|
|
cmake -B build -S $pkgname-$_pkgver \
|
2019-11-25 23:59:01 +00:00
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DBUILD_KRITA_QT_DESIGNER_PLUGINS=ON
|
2020-06-18 02:28:08 +00:00
|
|
|
cmake --build build
|
2018-03-10 20:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2020-06-18 02:28:08 +00:00
|
|
|
DESTDIR="$pkgdir" cmake --install build
|
2018-03-10 20:28:11 +00:00
|
|
|
}
|