summaryrefslogtreecommitdiff
path: root/gimp/Pkgfile
blob: 80219d918bc88458712ae76ecadebe401b8ecd5e (plain)
    1 # Description: The GIMP
    2 # URL:         http://www.gimp.org/
    3 # Maintainer:  Thomas Penteker, tek at serverop dot de
    4 # Depends on: gegl glib-networking gtk libart_lgpl mypaint-brushes poppler-data poppler-glib xorg-libxmu xorg-libxpm
    5 # Optional: gimp-print libsdl ghostscript libmng
    6 
    7 name=gimp
    8 version=2.10.18
    9 release=1
   10 source=(https://download.gimp.org/pub/gimp/v${version%.*}/gimp-$version.tar.bz2)
   11 
   12 build() {
   13   cd gimp-$version
   14 
   15   sed -i -e '/$(helpbrowser)/d' plug-ins/Makefile.in
   16   ./configure --prefix=/usr \
   17     --libexecdir=/usr/bin \
   18     --disable-static \
   19     --disable-python \
   20     --disable-nls \
   21     --without-webkit
   22 
   23   make
   24   make DESTDIR=$PKG install
   25 
   26   mv $PKG/usr/share/man/man1/gimp-console{-${version%.*}.1,.1}
   27   rm -r $PKG/usr/share/{gtk-doc,locale}
   28 }

Generated by cgit