opt/gimp/Pkgfile

29 lines
763 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
2020-04-13 12:29:29 +02:00
# Depends on: gegl glib-networking gtk libart_lgpl mypaint-brushes poppler-data xorg-libxmu xorg-libxpm
2020-04-13 06:04:14 +02:00
# Optional: gimp-print libsdl ghostscript libmng
2009-10-08 21:19:37 +02:00
name=gimp
2020-10-13 18:42:58 +02:00
version=2.10.22
2020-07-06 11:29:29 +02:00
release=1
source=(https://download.gimp.org/pub/gimp/v${version%.*}/$name-$version.tar.bz2)
2009-10-08 21:19:37 +02:00
build() {
cd $name-$version
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 \
--without-webkit
2015-12-06 21:03:30 +01:00
2009-10-08 21:19:37 +02:00
make
make DESTDIR=$PKG install
mv $PKG/usr/share/man/man1/gimp-console{-${version%.*}.1,.1}
rm -r $PKG/usr/share/{gtk-doc,locale}
2009-10-08 21:19:37 +02:00
}