summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7457eface821881d5d48803aa7f1ca54ec3cc277 (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
# Maintainer: Alexander Hunziker <alex.hunziker@gmail.com>
# Contributor: Alessio Biancalana <dottorblaster@gmail.com>
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>

pkgname=gegl-git
pkgver=0.3.6.106.g4804364
pkgrel=1
pkgdesc="Graph based image processing framework"
arch=('i686' 'x86_64')
url="http://www.gegl.org"
license=('GPL3' 'LGPL3')
groups=()
depends=('babl>=0.1.14' 'libspiro' 'json-glib')
makedepends=('git' 'intltool' 'python2' 'ruby' 'lua'
             'libraw' 'openexr' 'ffmpeg' 'librsvg' 'jasper'
             'libtiff' 'suitesparse')
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'
            'lua: lua plugin')
provides=("gegl=${pkgver}")
conflicts=('gegl>=0.3.0')
replaces=()
backup=()
options=(!libtool)
install=
source=(git://git.gnome.org/gegl)
md5sums=('SKIP')
noextract=()

_gitroot=GITURL
_gitname=gegl

build() {
  cd "$srcdir/$_gitname"

  ./autogen.sh
  ./configure --prefix=/usr --with-sdl --with-openexr --with-librsvg \
    --with-libavformat --with-jasper --disable-docs \
    --enable-workshop
  make
}

package() {
  cd "$srcdir/$_gitname"
  make DESTDIR="$pkgdir/" install
}

pkgver() {
  cd $_gitname
  git describe --always | sed -e 's/GEGL_//g' -e 's/[_-]/./g'
}