summaryrefslogtreecommitdiff
path: root/pcr/gimp-git/PKGBUILD
blob: 81d68a81b64974bd8a0d488b89aa8fae48db0553 (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
# Maintainer: Márcio Silva <coadde@parabola.nu>
# based of gimp

_pkgname=gimp
pkgname=gimp-git
pkgver=r37369.e8a0e6a
pkgrel=1
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-git' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme'
         'openexr' 'libgudev' 'libmypaint-gegl-git' 'aalib' 'xdg-utils')
makedepends=('intltool' 'webkitgtk2' 'poppler-glib' 'poppler-data' 'alsa-lib' 'iso-codes' 'ghostscript' 'gtk-doc' 'git'
             'sdl' 'suitesparse' 'ffmpeg' 'lensfun' 'libraw' 'lua' 'python' 'xorg-server-xvfb') # python: for gdbus-codegen
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'
            'ghostscript: for postscript support')
options=('!makeflags')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=(${_pkgname}-${pkgver}::git+git://git.gnome.org/${_pkgname}.git
        linux-kernel.gpl)
md5sums=('SKIP'
         '36854ad996c96df06249f1e94bd996d5')

pkgver() {
  cd "${srcdir}/${_pkgname}-${pkgver}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "${srcdir}/${_pkgname}-${pkgver}"
  NOCONFIGURE=1 ./autogen.sh
  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"
}