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
|
2022-01-06 14:15:28 +00:00
|
|
|
_pkgver=5.0.2
|
2020-06-18 02:28:08 +00:00
|
|
|
pkgver=${_pkgver/-/}
|
2022-01-06 14:15:28 +00:00
|
|
|
pkgrel=1
|
2021-07-02 19:46:47 +00:00
|
|
|
pkgdesc='Edit and paint images'
|
2018-03-10 20:28:11 +00:00
|
|
|
arch=(x86_64)
|
2021-07-02 19:46:47 +00:00
|
|
|
url='https://krita.org'
|
2018-03-10 20:28:11 +00:00
|
|
|
license=(GPL3)
|
2020-06-18 02:28:08 +00:00
|
|
|
depends=(kitemviews kitemmodels ki18n kcompletion kguiaddons kcrash qt5-svg qt5-multimedia quazip
|
2021-12-23 16:58:40 +00:00
|
|
|
gsl libraw exiv2 openexr fftw openjpeg2 opencolorio libwebp hicolor-icon-theme)
|
2021-06-05 22:04:03 +00:00
|
|
|
makedepends=(extra-cmake-modules kdoctools boost eigen poppler-qt5 python-pyqt5 libheif
|
2021-12-23 16:58:40 +00:00
|
|
|
qt5-tools sip kseexpr libmypaint)
|
2021-06-05 22:04:03 +00:00
|
|
|
optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations'
|
2021-12-23 17:58:15 +00:00
|
|
|
'python-pyqt5: for the Python plugins' 'libheif: HEIF filter'
|
2021-12-23 16:58:40 +00:00
|
|
|
'kseexpr: SeExpr generator layer' 'kimageformats: PSD support' 'libmypaint: support for MyPaint brushes')
|
|
|
|
source=(https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz{,.sig})
|
2022-01-06 14:15:28 +00:00
|
|
|
sha256sums=('e6751fc7eb504977a4880a376ebbd3995c87dad154486084e82397e65d499cbf'
|
2021-12-23 16:58:40 +00:00
|
|
|
'SKIP')
|
2020-10-13 17:19:02 +00:00
|
|
|
validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD' # Boudewijn Rempt <foundation@krita.org>
|
2021-08-26 12:37:44 +00:00
|
|
|
'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F' # Dmitry Kazakov (main key) <dimula73@gmail.com>
|
|
|
|
'064182440C674D9F8D0F6F8B4DA79EDA231C852B') # Stichting Krita Foundation <foundation@krita.org>
|
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
|
|
|
}
|