PKGBUILDs/community/gmic/PKGBUILD

90 lines
3 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)
2018-10-30 18:07:20 +00:00
pkgver=2.4.1
2018-11-24 13:40:19 +00:00
pkgrel=2
2017-12-22 12:41:15 +00:00
arch=(x86_64)
2015-06-01 14:24:45 +00:00
url="http://gmic.eu/"
2017-12-22 12:41:15 +00:00
license=(custom:CeCILL)
2018-05-09 00:21:16 +00:00
makedepends=(gimp qt5-base fftw openexr opencv git)
2018-11-24 13:40:19 +00:00
source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz gmic-opencv4.patch zart-opencv4.patch)
sha256sums=('446b465d2ff7314add634115f6bffecd136ad96759eb92f76c03f231f44188d6'
'1ffb4f8952be152ba2956a50ff6c39b078e547a4d3386cc2f34549124aefbed3'
'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
cd gmic-$pkgver/src
patch -p1 -i "$srcdir"/gmic-opencv4.patch
cd ../zart
patch -p1 -i "$srcdir"/zart-opencv4.patch
2017-07-06 18:31:40 +00:00
2018-11-24 18:05:17 +00:00
sed -i "s|-mtune=generic|${CFLAGS}|" Makefile
2013-09-13 14:40:59 +00:00
}
build() {
2018-06-21 19:11:30 +00:00
cd gmic-$pkgver
make -C src cli lib libc WGET=/bin/true
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
}