mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
42 lines
1.6 KiB
Bash
42 lines
1.6 KiB
Bash
# Maintainer: Antonio Rojas <arojas@archlinux,org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove makedepend on vc
|
|
|
|
pkgname=krita
|
|
_pkgver=4.4.3
|
|
pkgver=${_pkgver/-/}
|
|
pkgrel=3
|
|
pkgdesc="Edit and paint images"
|
|
arch=(x86_64)
|
|
url="https://krita.org"
|
|
license=(GPL3)
|
|
depends=(kitemviews kitemmodels ki18n kcompletion kguiaddons kcrash qt5-svg qt5-multimedia quazip
|
|
gsl libraw exiv2 openexr fftw giflib openjpeg2 hicolor-icon-theme)
|
|
makedepends=(extra-cmake-modules kdoctools boost eigen poppler-qt5 opencolorio1 python-pyqt5 libheif
|
|
qt5-tools sip4 python-sip4 kseexpr)
|
|
optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 'opencolorio1: for the LUT docker'
|
|
"krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python plugins' 'libheif: HEIF filter'
|
|
'kseexpr: SeExpr generator layer' 'kimageformats: PSD support')
|
|
source=(https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz{,.sig}
|
|
krita-openexr3.patch)
|
|
sha256sums=('d4062323c2237ab9195c0b8bce1a69e30bd6fd10fadbad6395c27211d9878f67'
|
|
'SKIP'
|
|
'3825dac0317f4501c8dd8b0844540bbd0841702cd15903ce3a659755eaa226f5')
|
|
validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD' # Boudewijn Rempt <foundation@krita.org>
|
|
'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F') # Dmitry Kazakov (main key) <dimula73@gmail.com>
|
|
|
|
prepare() {
|
|
patch -d $pkgname-$_pkgver -p1 < krita-openexr3.patch # Fix build with OpenEXR 3
|
|
}
|
|
|
|
build() {
|
|
cmake -B build -S $pkgname-$_pkgver \
|
|
-DBUILD_TESTING=OFF \
|
|
-DBUILD_KRITA_QT_DESIGNER_PLUGINS=ON
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|