PKGBUILDs/community/gmic/PKGBUILD

95 lines
3.1 KiB
Bash
Raw Normal View History

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)
2020-01-23 19:59:57 +00:00
pkgver=2.8.3
2020-01-14 19:38:38 +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-10-30 12:35:52 +00:00
makedepends=(gimp qt5-base fftw openexr opencv eigen git)
source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch
git+https://github.com/c-koi/zart#commit=2d8727b5)
2020-01-23 19:59:57 +00:00
sha256sums=('573a4f7731ba506a397c8080e60ad30bd3d4b686c51ec3d22d7f5de9a901547c'
2019-10-30 12:35:52 +00:00
'f4295a2b9a6730060e1dd763c602bd5156570d623bc69c2214dfd11e94943296'
'SKIP')
2013-09-13 14:40:59 +00:00
prepare() {
2019-10-30 12:35:52 +00:00
# Use git version of zart which builds with current gmic
rm -r gmic-$pkgver/zart
mv zart gmic-$pkgver
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
2019-08-24 22:49:32 +00:00
patch -p1 -i ../../zart-opencv4.patch
sed -e 's|opencv|opencv4|' -i zart.pro
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
}