Date: Friday, November 11, 2022 @ 09:45:35
Author: eworm
Revision: 461145
archrelease: copy trunk to staging-x86_64
Added:
gegl/repos/staging-x86_64/
gegl/repos/staging-x86_64/PKGBUILD
(from rev 461144, gegl/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: gegl/repos/staging-x86_64/PKGBUILD (from rev 461144,
gegl/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-11-11 09:45:35 UTC (rev 461145)
@@ -0,0 +1,44 @@
+# Maintainer: Daniel Isenmann <[email protected]>
+
+pkgname=gegl
+_tag='e45bf4479cc96e968ff39e7f3e83c8b6ca7ee757'
+pkgver=0.4.38
+pkgrel=2
+pkgdesc='Graph based image processing framework'
+arch=('x86_64')
+url='https://www.gegl.org/'
+license=('GPL3' 'LGPL3')
+depends=('babl' 'jasper' 'json-glib' 'lensfun' 'libgexiv2' 'libraw' 'librsvg'
'libspiro'
+ 'libtiff' 'luajit' 'openexr' 'poppler-glib' 'suitesparse')
+makedepends=('exiv2' 'ffmpeg' 'git' 'glu' 'gobject-introspection' 'intltool'
'mesa'
+ 'meson' 'python-gobject' 'ruby' 'vala')
+options=('debug')
+optdepends=('ffmpeg: ffmpeg plugin'
+ 'graphviz: for gegl-introspect')
+source=("git+https://gitlab.gnome.org/GNOME/gegl.git#tag=$_tag")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd "${pkgname}"
+ git describe --tags | sed 's/^GEGL_//;s/_$//;s/_/./g;s/-/+/g'
+}
+
+build() {
+ mkdir -p build
+ cd build
+ arch-meson ../"${pkgname}" \
+ -Dworkshop=true \
+ -Dmrg=disabled \
+ -Dmaxflow=disabled
+ ninja
+}
+
+check() {
+ cd build
+ ninja test || :
+}
+
+package() {
+ cd build
+ DESTDIR="${pkgdir}" ninja install
+}