opt/gimp/Pkgfile

29 lines
737 B
Plaintext
Raw Normal View History

2009-10-08 21:19:37 +02:00
# Description: The GIMP
# URL: http://www.gimp.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Simone Rota, sip at crux dot nu
2012-10-11 17:08:07 +02:00
# Depends on: libart_lgpl, xorg-libxmu, xorg-libxpm, gegl
2011-05-17 09:50:31 +02:00
# Nice to have: gimp-print, libsdl, ghostscript, librsvg, libmng
2009-10-08 21:19:37 +02:00
name=gimp
2017-05-07 23:42:55 +02:00
version=2.8.20
2016-03-08 02:47:58 +01:00
release=1
source=(http://ftp.gimp.org/pub/gimp/v${version%.*}/gimp-$version.tar.bz2 cve-2013-1913)
2009-10-08 21:19:37 +02:00
build() {
cd gimp-$version
patch -p1 -i ../cve-2013-1913
2009-10-08 21:19:37 +02:00
sed -i -e '/$(helpbrowser)/d' plug-ins/Makefile.in
./configure --prefix=/usr \
--disable-static \
--disable-python \
--disable-nls \
2015-12-06 21:03:30 +01:00
--without-webkit LIBS="-lm"
2009-10-08 21:19:37 +02:00
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/{gtk-doc,locale}
}