blob: 8e9f64afdd3ca25e524adae2ce33c79416ca5a71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer : bartus <arch-user-repoᘓbartus.33mail.com>
# shellcheck disable=SC2034
# Contributor: Filipe Laíns (FFY00) <lains@archlinux.org>
# Contributor: Iru Cai <mytbk920423@gmail.com>
# Contributor: Alexander Hunziker <alex.hunziker@gmail.com>
# Contributor: Alessio Biancalana <dottorblaster@gmail.com>
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
_pkgname=gegl
pkgname="${_pkgname}-git"
pkgver=0.4.53.r10929.97606ad05
pkgrel=1
pkgdesc="Graph based image processing framework"
arch=('i686' 'x86_64')
url="https://www.gegl.org"
license=('GPL3' 'LGPL3')
depends=('babl>=0.1.78'
'libspiro>=0.5.0'
'json-glib>=1.0.0'
'sdl2-compat>=2.0.5')
makedepends=('git' 'meson' 'intltool' 'python' 'ruby'
'luajit>=2.0.4'
'libraw>=0.15.4'
'openexr>=1.6.1'
'ffmpeg'
'librsvg>=2.40.6'
'jasper>=1.900.1'
'libtiff>=4.0.0'
'libnsgif'
'exiv2'
'libgexiv2>=0.14.0'
'lensfun>=0.2.5'
'vala'
'python-gobject>=3.2.0'
'suitesparse'
'gobject-introspection')
optdepends=('openexr: for using the openexr plugin'
'ffmpeg: for using the ffmpeg plugin'
'librsvg: for using the svg plugin'
'libtiff: tiff plugin'
'jasper: for using the jasper plugin'
'libraw: raw plugin'
'suitesparse: matting-levin plugin'
'luajit: lua plugin'
'libgexiv2: for image metadata'
'lensfun: for lens distortion'
'libnsgif: gif plugin')
provides=("gegl=${pkgver%%.r*}")
conflicts=('gegl')
options=(!libtool)
source=('git+https://gitlab.gnome.org/GNOME/gegl.git')
source+=('sdl2-compat.patch::https://gitlab.gnome.org/GNOME/gegl/-/merge_requests/208.patch')
sha512sums=('SKIP'
'd8aff734371f5c7b694034c8f2aa07a5fdf89d93496dbc28cd2e6c6d404c1d0cd65cdcc17bcdeb1b493ad7d0125a93567feaa8be72663679b7ab36950e155421')
pkgver() {
cd ${srcdir}/${_pkgname}
printf "%s.r%s.%s" \
$(grep -ozP "(?s)^project\('gegl'.*?version: *'\K[0-9.]*" meson.build|tr '\0' '\n') \
$(git rev-list --count HEAD) \
$(git rev-parse --short HEAD)
}
prepare() {
git -C "${srcdir}/${_pkgname}" apply -v "${srcdir}/sdl2-compat.patch"
}
build() {
meson "${srcdir}/${_pkgname}"\
"${srcdir}/build" \
--prefix=/usr \
-Dworkshop=true
export NINJA_STATUS="[%p | %f<%r<%u | %cbps ] "
ninja -C "${srcdir}/build"
}
package() {
DESTDIR="${pkgdir}" ninja -C "${srcdir}/build" install
}
# vim: tabstop=2 expandtab
|