PKGBUILDs/community/gmic/PKGBUILD

82 lines
2.6 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-04 18:33:40 +00:00
pkgver=2.4.0
2018-06-25 15:50:53 +00:00
pkgrel=1
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-06-25 15:50:53 +00:00
source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz)
2018-10-04 18:33:40 +00:00
sha256sums=('ffc649c960f2dc52cea77039802a8c2b71f997ba300270e08fc2117e238614c3')
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
sed -e 's/pkg-config opencv --libs ||//' -e 's/-lopencv_highgui/-lopencv_videoio/' -i gmic-$pkgver/src/Makefile
2017-07-06 18:31:40 +00:00
2018-06-21 19:17:25 +00:00
sed -i "s|-mtune=generic|${CFLAGS}|" gmic-$pkgver/src/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
qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on
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
}