blob: 94be847b66a0de7167dfe197debfab1c73b7f3e6 (
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
|
# Maintainer: Márcio Silva <coadde@parabola.nu>
# Maintainer (Arch): Daniel Isenmann <daniel@archlinux.org>
_pkgname=gimp
pkgname=gimp-devel
pkgver=2.9.2
pkgrel=2
pkgdesc="GNU Image Manipulation Program"
arch=('i686' 'x86_64' 'armv7h')
url="http://www.${_pkgname}.org/"
license=('GPL' 'LGPL')
depends=('pygtk' 'lcms2' 'libxpm' 'libwmf' 'libxmu' 'librsvg' 'libmng' 'dbus-glib'
'libgexiv2' 'gegl' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme' 'babl'
'libgudev' 'libmypaint' 'aalib') # openexr is unstable
makedepends=('intltool' 'webkitgtk2' 'poppler-glib' 'poppler-data' 'alsa-lib' 'iso-codes' 'ghostscript' 'gtk-doc'
'sdl' 'suitesparse' 'ffmpeg' 'lensfun' 'libraw' 'lua')
optdepends=('gutenprint: for sophisticated printing only as gimp has built-in cups print support'
'webkitgtk2: for the help browser'
'poppler-glib: for pdf support'
'poppler-data: for pdf import with Cyrillic and CJK support'
'alsa-lib: for MIDI event controller module'
'mypaint-gegl-git: for use mypaint brushes'
'ghostscript: for postscript support')
options=('!makeflags')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
install=${_pkgname}.install
source=(http://download.${_pkgname}.org/pub/${_pkgname}/v${pkgver%.*}/${_pkgname}-${pkgver}.tar.bz2
linux-kernel.gpl)
md5sums=('aa8a846a497e3328c5b7d2fd33f5cf63'
'36854ad996c96df06249f1e94bd996d5')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
--enable-mp --enable-gimp-console --enable-python
make
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
sed -i 's|#!/usr/bin/env python|#!/usr/bin/python2|' "${pkgdir}"/usr/lib/gimp/2.0/plug-ins/*.py
install -D -m644 "${srcdir}/linux-kernel.gpl" "${pkgdir}/usr/share/gimp/2.0/palettes/Linux-kernel.gpl"
ln -s gimp-2.9 "${pkgdir}/usr/bin/gimp"
ln -s gimp-console-2.9 "${pkgdir}/usr/bin/gimp-console"
ln -s gimptool-2.0 "${pkgdir}/usr/bin/gimptool"
ln -sf gimp-2.9.1.gz "${pkgdir}/usr/share/man/man1/gimp.1.gz"
ln -sf gimp-console-2.9.1.gz "${pkgdir}/usr/share/man/man1/gimp-console.1.gz"
ln -sf gimptool-2.0.1.gz "${pkgdir}/usr/share/man/man1/gimptool.1.gz"
ln -sf gimprc-2.9.5.gz "${pkgdir}/usr/share/man/man5/gimprc.5.gz"
}
|