mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-27 12:32:13 +08:00
61 lines
1.8 KiB
Bash
61 lines
1.8 KiB
Bash
# Contributor from CCR: danyf90 <daniele.formichelli@gmail.com>
|
|
|
|
pkgname=gegl
|
|
pkgver=0.2.0
|
|
pkgrel=9
|
|
pkgdesc="Graph based image processing framework"
|
|
arch=('x86_64')
|
|
url="http://www.gegl.org/"
|
|
license=('GPL3' 'LGPL3')
|
|
depends=('babl' 'gtk2')
|
|
makedepends=('intltool' 'ruby' 'lua' 'openexr' 'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'glu' 'exiv2' 'vala' 'graphviz')
|
|
optdepends=('openexr: for using the openexr plugin'
|
|
'ffmpeg: for using the ffmpeg plugin'
|
|
'librsvg: for using the svg plugin'
|
|
'jasper: for using the jasper plugin')
|
|
options=(!makeflags)
|
|
source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
|
|
gegl-0.2.0-ffmpeg-0.11.diff
|
|
gegl-0.2.0-CVE-2012-4433.patch
|
|
gegl-0.2.0-lua-5.2.patch
|
|
gegl-0.2.0-remove-src-over-op.patch)
|
|
sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
|
|
'e2e00633149fa4d5196520e284609de257eb012f'
|
|
'44d48bd9ad008703de9f8eb683d557bac39a02c8'
|
|
'c78a092b880874ba7784b652bcd9c532e2b9975d'
|
|
'dc9ae21cc5ba0fb47ef05793f0cb169572dfab74')
|
|
|
|
prepare() {
|
|
cd ${pkgname}-${pkgver}
|
|
patch -Np1 -i ../gegl-0.2.0-ffmpeg-0.11.diff
|
|
patch -Np1 -i ../gegl-0.2.0-CVE-2012-4433.patch
|
|
patch -Np1 -i ../gegl-0.2.0-lua-5.2.patch
|
|
patch -Np1 -i ../gegl-0.2.0-remove-src-over-op.patch
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--with-sdl \
|
|
--with-openexr \
|
|
--with-librsvg \
|
|
--with-libavformat \
|
|
--with-jasper \
|
|
--disable-docs
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
}
|
|
|
|
#check() {
|
|
# cd ${pkgname}-${pkgver}
|
|
# make check
|
|
#}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|