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
|
2023-11-11 22:28:39 +00:00
|
|
|
pkgname=(gmic
|
|
|
|
gimp-plugin-gmic)
|
2024-09-04 16:42:38 +00:00
|
|
|
pkgver=3.4.2
|
2024-08-28 17:05:35 +00:00
|
|
|
pkgrel=1
|
2017-12-22 12:41:15 +00:00
|
|
|
arch=(x86_64)
|
2021-07-02 19:44:11 +00:00
|
|
|
url='https://gmic.eu/'
|
2024-05-14 23:39:35 +00:00
|
|
|
license=(CECILL-C)
|
2023-10-05 23:18:26 +00:00
|
|
|
makedepends=(cmake
|
|
|
|
eigen
|
|
|
|
fftw
|
|
|
|
gimp
|
|
|
|
graphicsmagick
|
|
|
|
opencv
|
|
|
|
openexr
|
|
|
|
qt5-base
|
|
|
|
qt5-tools)
|
2023-11-11 22:28:39 +00:00
|
|
|
source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz)
|
2024-09-04 16:42:38 +00:00
|
|
|
sha256sums=('9abd8377693715f87104bdbe077d45ecb00cf19f57c29f425eacda07c745fe8a')
|
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
|
2023-03-19 14:55:40 +00:00
|
|
|
# Temp install to link gmic-qt
|
|
|
|
DESTDIR="tmp-install" cmake --install 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 \
|
2023-03-19 14:55:40 +00:00
|
|
|
-DCMAKE_PREFIX_PATH="$srcdir"/tmp-install/usr \
|
2020-05-15 14:08:32 +00:00
|
|
|
-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 \
|
2023-03-19 14:55:40 +00:00
|
|
|
-DCMAKE_PREFIX_PATH="$srcdir"/tmp-install/usr \
|
2020-05-15 14:08:32 +00:00
|
|
|
-DGMIC_QT_HOST=gimp \
|
|
|
|
-DENABLE_LTO=OFF
|
2020-06-11 00:37:09 +00:00
|
|
|
cmake --build build-gimp
|
2013-09-13 14:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_gmic() {
|
|
|
|
pkgdesc="GREYC's Magic Image Converter: image processing framework"
|
2023-10-05 23:18:26 +00:00
|
|
|
depends=(curl
|
|
|
|
fftw
|
|
|
|
gcc-libs
|
|
|
|
glibc
|
|
|
|
graphicsmagick
|
|
|
|
imath
|
|
|
|
libjpeg-turbo
|
|
|
|
libpng
|
|
|
|
libtiff
|
|
|
|
libx11
|
|
|
|
opencv
|
|
|
|
openexr
|
|
|
|
zlib)
|
2017-12-22 12:41:15 +00:00
|
|
|
optdepends=('qt5-base: for the Qt UI')
|
2022-01-19 17:26:51 +00:00
|
|
|
conflicts=(cimg)
|
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
|
2023-11-02 12:52:34 +00:00
|
|
|
# .cpp is included by .h
|
|
|
|
install -Dm644 gmic-$pkgver/src/gmic.cpp -t "$pkgdir"/usr/include
|
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"
|
2023-10-05 23:18:26 +00:00
|
|
|
depends=(babl
|
|
|
|
fftw
|
|
|
|
gcc-libs
|
|
|
|
gegl
|
|
|
|
gimp
|
|
|
|
glib2
|
|
|
|
glibc
|
|
|
|
gmic
|
|
|
|
libx11
|
|
|
|
qt5-base
|
|
|
|
zlib)
|
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
|
|
|
}
|