2017-12-22 12:41:15 +00:00
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com>
|
2013-09-13 14:40:59 +00:00
|
|
|
# Contributor: farid <farid at archlinuc-br.org>
|
|
|
|
# Contributor: Archie <Mymaud@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove -mtune=generic from makefile, replace with our CFLAGS
|
|
|
|
|
2016-09-05 17:12:01 +00:00
|
|
|
highmem=1
|
|
|
|
|
2013-09-13 14:40:59 +00:00
|
|
|
pkgbase=gmic
|
2017-12-22 12:41:15 +00:00
|
|
|
pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
|
2019-05-25 16:10:21 +00:00
|
|
|
pkgver=2.6.4
|
2019-04-08 18:07:22 +00:00
|
|
|
pkgrel=1
|
2017-12-22 12:41:15 +00:00
|
|
|
arch=(x86_64)
|
2019-03-15 18:23:08 +00:00
|
|
|
url="https://gmic.eu/"
|
2017-12-22 12:41:15 +00:00
|
|
|
license=(custom:CeCILL)
|
2019-03-15 18:23:08 +00:00
|
|
|
makedepends=(gimp qt5-base fftw openexr opencv eigen)
|
2019-05-13 22:46:44 +00:00
|
|
|
source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch)
|
2019-05-25 16:10:21 +00:00
|
|
|
sha256sums=('4cd88b2dca6b9b1a330ab4556d36656bafb98e4e9814bf0448545b27ef18dae3'
|
2018-11-24 13:40:19 +00:00
|
|
|
'182c6723708302a8cee92bfb45a40ff09b8903c649ce856d0d8cd10aab0ee39b')
|
2013-09-13 14:40:59 +00:00
|
|
|
|
|
|
|
prepare() {
|
2018-06-21 19:11:30 +00:00
|
|
|
sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' -i gmic-$pkgver/src/Makefile
|
|
|
|
# fix overlinking
|
2018-11-24 13:40:19 +00:00
|
|
|
sed -e 's/pkg-config opencv --libs ||//' -e 's/-lopencv_highgui/-lopencv_videoio/' \
|
|
|
|
-e 's/pkg-config opencv/pkg-config opencv4/' -i gmic-$pkgver/src/Makefile
|
|
|
|
# fix build with openCV 4.0
|
2019-05-13 22:46:44 +00:00
|
|
|
cd gmic-$pkgver/zart
|
2018-11-24 13:40:19 +00:00
|
|
|
patch -p1 -i "$srcdir"/zart-opencv4.patch
|
2017-07-06 18:31:40 +00:00
|
|
|
|
2018-11-24 18:20:04 +00:00
|
|
|
cd ..
|
|
|
|
sed -i "s|-mtune=generic|${CFLAGS}|" src/Makefile
|
2013-09-13 14:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-06-21 19:11:30 +00:00
|
|
|
cd gmic-$pkgver
|
2019-05-13 22:46:44 +00:00
|
|
|
make -C src cli lib libc WGET=/bin/true LIBS=${LDFLAGS} -j1
|
2018-06-21 19:11:30 +00:00
|
|
|
|
|
|
|
cd gmic-qt
|
|
|
|
qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=none
|
|
|
|
make
|
|
|
|
qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=gimp
|
|
|
|
make
|
|
|
|
qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=krita
|
|
|
|
make
|
|
|
|
|
|
|
|
cd ../zart
|
2018-11-24 13:40:19 +00:00
|
|
|
qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on QMAKE_CXXFLAGS+=" -DOPENCV2_HEADERS"
|
2018-06-21 19:11:30 +00:00
|
|
|
make
|
2013-09-13 14:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_gmic() {
|
|
|
|
pkgdesc="GREYC's Magic Image Converter: image processing framework"
|
2017-12-22 12:41:15 +00:00
|
|
|
depends=(opencv fftw curl)
|
|
|
|
optdepends=('qt5-base: for the Qt UI')
|
2013-09-13 14:40:59 +00:00
|
|
|
|
2018-06-21 19:11:30 +00:00
|
|
|
cd gmic-$pkgver/src
|
2017-12-22 12:41:15 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
2018-05-16 19:10:25 +00:00
|
|
|
rm -r "$pkgdir"/usr/{bin/zart,lib/gimp,bin/gmic_krita_qt}
|
2013-09-13 14:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_zart() {
|
|
|
|
pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
|
2018-06-21 19:11:30 +00:00
|
|
|
depends=(gmic qt5-base)
|
2013-09-13 14:40:59 +00:00
|
|
|
|
2018-06-21 19:11:30 +00:00
|
|
|
install -Dm755 gmic-$pkgver/zart/zart -t "$pkgdir"/usr/bin
|
|
|
|
install -Dm644 gmic-$pkgver/zart/Licence_CeCILL_V2-en.html -t "$pkgdir"/usr/share/licenses/$pkgname
|
2013-09-13 14:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_gimp-plugin-gmic() {
|
|
|
|
pkgdesc="Gimp plugin for the G'MIC image processing framework"
|
2018-06-21 19:11:30 +00:00
|
|
|
depends=(gimp gmic qt5-base)
|
2013-09-13 14:40:59 +00:00
|
|
|
|
2018-06-21 19:11:30 +00:00
|
|
|
install -Dm755 gmic-$pkgver/gmic-qt/gmic_gimp_qt "$pkgdir"/usr/lib/gimp/2.0/plug-ins/gmic_gimp
|
|
|
|
install -Dm644 gmic-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
2013-09-13 14:40:59 +00:00
|
|
|
}
|
2017-10-11 14:34:51 +00:00
|
|
|
|
|
|
|
package_krita-plugin-gmic() {
|
|
|
|
pkgdesc="Krita plugin for the G'MIC image processing framework"
|
2018-06-21 19:11:30 +00:00
|
|
|
depends=(krita gmic)
|
2017-10-11 14:34:51 +00:00
|
|
|
|
2018-06-21 19:11:30 +00:00
|
|
|
install -Dm755 gmic-$pkgver/gmic-qt/gmic_krita_qt -t "$pkgdir"/usr/bin/
|
|
|
|
install -Dm644 gmic-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
2017-10-11 14:34:51 +00:00
|
|
|
}
|