blob: e71a398e9f9902eaea2611362bdd386e94205c0d (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Maintainer : bartus <arch-user-repoᘓbartus.33mail.com>
# Contributor: Filipe Laíns (FFY00) <filipe.lains@gmail.com>
# Contributor: Iru Cai <mytbk920423@gmail.com>
# Contributor: Alexander Hunziker <alex.hunziker@gmail.com>
# Contributor: Alessio Biancalana <dottorblaster@gmail.com>
pkgname=gimp-develop-git
_pkgname=${pkgname%-develop-git}
epoch=1
pkgver=2.99.1.r3723.65530b6aa7
pkgrel=1
pkgdesc="GNU Image Manipulation Program (non-conflicting git version)"
arch=('i686' 'x86_64')
url="https://www.gimp.org"
license=('GPL' 'LGPL')
depends=(
'lcms2>=2.8'
'libwmf>=0.2.8'
'icu'
'enchant'
'libgexiv2>=0.10.6'
'librsvg>=2.40.6'
'desktop-file-utils'
'libexif>=0.6.15'
'libart-lgpl>=2.3.19'
'dbus-glib'
'gtk-doc>=1.0'
'poppler-glib>=0.69.0'
'poppler-data>=0.4.9'
'openexr>=1.6.1'
'mypaint-brushes1>=1.3.0'
'babl>=0.1.72'
'gegl>=0.4.17'
'cairo>=1.14.0'
'appstream-glib>=0.7.7'
'gobject-introspection>=1.32.0'
)
makedepends=('git' 'gutenprint>=5.0.0' 'intltool>=0.40.1'
'alsa-lib>=1.0.0' 'libxslt' 'glib-networking'
'alsa-lib' 'curl' 'ghostscript' 'libxpm' 'webkit2gtk'
'libheif' 'libwebp' 'libmng' 'iso-codes' 'aalib' 'zlib'
'gjs' 'python-gobject' 'luajit'
)
checkdepends=('xorg-server-xvfb')
optdepends=('gutenprint: for sophisticated printing only as gimp has built-in cups print support'
'alsa-lib: for MIDI event controller module'
'curl: for URI support'
'ghostscript: for postscript support'
'libxpm: XPM support'
'webkit2gtk: HTML renderer and web content engine'
'libheif: HEIF support'
'libwebp: WebP support'
'libmng: MNG support'
'iso-codes: Language support'
'aalib: ASCII art support'
'zlib: Compression routines'
'gjs: JavaScript scripting support'
'luajit: LUA scripting support'
)
source=('git+https://gitlab.gnome.org/GNOME/gimp.git'
'linux.gpl')
sha512sums=('SKIP'
'6f33d57f242fa8ce04b65e06a712bd54677306a45b22cb853fbe348089cd4673bd4ed91073074fe067166fe8951c370f8bbbc386783e3ed5170d52e9062666fe')
pkgver() {
cd $srcdir/$_pkgname
printf %s.%s.%s.r%s.%s $(grep -oP 'gimp_(major|minor|micro)_version\], \[\K[0-9]{1,2}' configure.ac) $(git rev-list $(git describe --abbrev=0)..HEAD --count) $(git log --pretty=format:'%h' -n 1)
}
prepare() {
cd $_pkgname
_mypaintver=$(echo /usr/lib/libmypaint-*.so | grep -o -E '\-[0-9]+(\.[0-9]+)*' | head -1)
sed -i "s|\\(libmypaint\\)\\( >= libmypaint_required_version\\)|\\1${_mypaintver}\\2|g" configure.ac
./autogen.sh \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/bin \
--enable-mp \
--enable-gimp-console \
--enable-gimp-remote \
--enable-python \
--enable-gtk-doc \
--with-gif-compression=lzw \
--with-libcurl \
--with-openexr
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
}
build() {
cd $_pkgname
PYTHONPATH=/usr/share/glib-2.0:$PYTHONPATH make
}
#check() {
# cd $_pkgname
#
# xvfb-run make check
# xvfb-run make distcheck
#}
package() {
cd $_pkgname
make DESTDIR="$pkgdir" install
install -Dm 644 "$srcdir"/linux.gpl "$pkgdir"/usr/share/gimp/2.99/palettes/Linux.gpl
#fix gimp.desktop
mv ${pkgdir}/usr/share/applications/gimp.desktop ${pkgdir}/usr/share/applications/gimp-2.99.desktop
sed -i 's/Icon=gimp/&-2.99/' ${pkgdir}/usr/share/applications/gimp-2.99.desktop
#fix icons
for icon in $(find ${pkgdir}/usr/share/icons -type f); do
mv ${icon} ${icon%.png}-2.99.png
done
#fix metainfo
rm -rf ${pkgdir}/usr/share/metainfo
}
|