opt/gimp/Pkgfile

30 lines
814 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
# Depends on: gegl glib-networking gtk libart_lgpl mypaint-brushes poppler-data poppler-glib xorg-libxmu xorg-libxpm
2019-04-08 12:08:19 +02:00
# Optional: gimp-print libsdl ghostscript libmng
2009-10-08 21:19:37 +02:00
name=gimp
version=2.10.12
2016-03-08 02:47:58 +01:00
release=1
source=(https://download.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 \
--libexecdir=/usr/bin \
2009-10-08 21:19:37 +02:00
--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}
}