mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
44 lines
1.7 KiB
Bash
44 lines
1.7 KiB
Bash
# Maintainer: Antonio Rojas <arojas@archlinux,org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove makedepend on vc
|
|
|
|
pkgname=krita
|
|
_pkgver=4.3.0
|
|
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 boost-libs giflib openjpeg2 hicolor-icon-theme)
|
|
makedepends=(extra-cmake-modules kdoctools boost eigen poppler-qt5 opencolorio python-pyqt5 libheif
|
|
qt5-tools sip5)
|
|
optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 'opencolorio: for the LUT docker'
|
|
"krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python plugins' 'libheif: HEIF filter')
|
|
conflicts=(calligra-krita krita-l10n)
|
|
replaces=(calligra-krita krita-l10n)
|
|
source=("https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz"
|
|
krita-sip5.patch
|
|
krita-quazip1.patch)
|
|
sha256sums=('d071887c73bffbdc179054826b9752f5e5ab43fdcd9ffdd0402e9ab2ceee4bda'
|
|
'08076f5e3aa47a34f358efef16d95ae008dd71bcabc6da83a29f9597c1d25453'
|
|
'c14bf8911eb5722cb1f86f3a5a9a410231c76ad275689972f58a63bb63983ce4')
|
|
validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt <foundation@krita.org>
|
|
|
|
prepare() {
|
|
patch -d $pkgname-$_pkgver -p1 -i ../krita-sip5.patch # Fix build with SIP 5
|
|
patch -d $pkgname-$_pkgver -p1 -i ../krita-quazip1.patch # Fix build with quazip 1
|
|
}
|
|
|
|
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
|
|
}
|