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-06-24 12:30:56 +00:00
|
|
|
pkgver=4.2.2
|
2019-06-25 00:24:35 +00:00
|
|
|
pkgrel=2
|
2018-03-10 20:28:11 +00:00
|
|
|
pkgdesc="Edit and paint images"
|
|
|
|
arch=(x86_64)
|
|
|
|
url="https://krita.org"
|
|
|
|
license=(GPL3)
|
2019-05-28 12:40:16 +00:00
|
|
|
depends=(kitemviews kitemmodels ki18n kcompletion karchive kguiaddons kcrash qt5-svg qt5-multimedia quazip
|
2018-12-12 13:38:21 +00:00
|
|
|
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-06-25 00:24:35 +00:00
|
|
|
source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz"{,.sig}
|
|
|
|
krita-global-menu.patch::"https://cgit.kde.org/krita.git/patch/?id=8d6a2a5d")
|
2018-03-10 20:28:11 +00:00
|
|
|
validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt <foundation@krita.org>
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
2019-06-25 00:24:35 +00:00
|
|
|
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
patch -p1 -i ../krita-global-menu.patch # Fix global menu on Plasma
|
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
|
|
|
|
}
|
2019-06-25 00:24:35 +00:00
|
|
|
md5sums=('1100871711c919c956b3e1e2b24e98d4'
|
|
|
|
'SKIP'
|
|
|
|
'f85e2fe776423589f8398c31787cae9d')
|