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>
|
2020-03-28 20:09:40 +00:00
|
|
|
# - set LTO=off for gmic-qt
|
2013-09-13 14:40:59 +00:00
|
|
|
|
2016-09-05 17:12:01 +00:00
|
|
|
highmem=1
|
|
|
|
|
2013-09-13 14:40:59 +00:00
|
|
|
pkgbase=gmic
|
2021-07-16 13:11:48 +00:00
|
|
|
pkgname=(gmic gimp-plugin-gmic krita-plugin-gmic)
|
2021-09-02 21:56:11 +00:00
|
|
|
pkgver=2.9.9
|
2021-10-15 12:51:49 +00:00
|
|
|
pkgrel=2
|
2017-12-22 12:41:15 +00:00
|
|
|
arch=(x86_64)
|
2021-07-02 19:44:11 +00:00
|
|
|
url='https://gmic.eu/'
|
2017-12-22 12:41:15 +00:00
|
|
|
license=(custom:CeCILL)
|
2021-02-05 22:22:19 +00:00
|
|
|
makedepends=(cmake gimp qt5-base fftw openexr opencv eigen graphicsmagick qt5-tools)
|
2020-11-17 15:07:48 +00:00
|
|
|
source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz)
|
2021-09-02 21:56:11 +00:00
|
|
|
sha256sums=('9f053338752ec96a6b619718037767682c5fd58e2471c08f3740fdb070605bc0')
|
2013-09-13 14:40:59 +00:00
|
|
|
|
|
|
|
build() {
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake -B build -S gmic-$pkgver \
|
2020-05-15 14:08:32 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2020-06-11 00:37:09 +00:00
|
|
|
-DENABLE_DYNAMIC_LINKING=ON \
|
2021-05-03 14:00:00 +00:00
|
|
|
-DBUILD_LIB_STATIC=OFF \
|
|
|
|
-DENABLE_OPENCV=ON
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake --build build
|
2018-06-21 19:11:30 +00:00
|
|
|
|
2020-05-15 14:08:32 +00:00
|
|
|
export LDFLAGS="$LDFLAGS -L../build"
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake -B build-qt -S gmic-$pkgver/gmic-qt \
|
2020-05-15 14:08:32 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DENABLE_DYNAMIC_LINKING=ON \
|
|
|
|
-DGMIC_PATH="$srcdir"/gmic-$pkgver/src \
|
|
|
|
-DGMIC_QT_HOST=none \
|
|
|
|
-DENABLE_LTO=OFF
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake --build build-qt
|
2020-05-15 14:08:32 +00:00
|
|
|
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake -B build-gimp -S gmic-$pkgver/gmic-qt \
|
2020-05-15 14:08:32 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DENABLE_DYNAMIC_LINKING=ON \
|
|
|
|
-DGMIC_PATH="$srcdir"/gmic-$pkgver/src \
|
|
|
|
-DGMIC_QT_HOST=gimp \
|
|
|
|
-DENABLE_LTO=OFF
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake --build build-gimp
|
2020-05-15 14:08:32 +00:00
|
|
|
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake -B build-krita -S gmic-$pkgver/gmic-qt \
|
2020-05-15 14:08:32 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DENABLE_DYNAMIC_LINKING=ON \
|
|
|
|
-DGMIC_PATH="$srcdir"/gmic-$pkgver/src \
|
|
|
|
-DGMIC_QT_HOST=krita \
|
|
|
|
-DENABLE_LTO=OFF
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake --build build-krita
|
2013-09-13 14:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_gmic() {
|
|
|
|
pkgdesc="GREYC's Magic Image Converter: image processing framework"
|
2020-05-15 14:08:32 +00:00
|
|
|
depends=(graphicsmagick opencv fftw)
|
2017-12-22 12:41:15 +00:00
|
|
|
optdepends=('qt5-base: for the Qt UI')
|
2013-09-13 14:40:59 +00:00
|
|
|
|
2020-06-11 00:37:09 +00:00
|
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
|
|
install -Dm644 gmic-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
2020-05-15 14:08:32 +00:00
|
|
|
|
2020-06-11 00:37:09 +00:00
|
|
|
DESTDIR="$pkgdir" cmake --install build-qt
|
2020-05-15 20:05:35 +00:00
|
|
|
|
2020-06-11 00:37:09 +00:00
|
|
|
install -Dm644 gmic-$pkgver/resources/gmic_cluts.gmz -t "$pkgdir"/usr/share/gmic
|
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
|
|
|
|
2020-06-11 00:37:09 +00:00
|
|
|
DESTDIR="$pkgdir" cmake --install build-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
|
|
|
|
2020-06-11 00:37:09 +00:00
|
|
|
DESTDIR="$pkgdir" cmake --install build-krita
|
|
|
|
install -Dm644 gmic-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
2017-10-11 14:34:51 +00:00
|
|
|
}
|