# Description: The Gimp help files # URL: http://docs.gimp.org/ # Maintainer: Vincenzo Colosimo, vico at bicisport dot de # Depends on: docbook-xsl, gimp, libxml2-python name=gimp-help version=2.4.2 release=1 source=(ftp://ftp.gimp.org/pub/gimp/help/${name}-${version}.tar.bz2) build() { cd $name-$version export ALL_LINGUAS="en" ./configure make install -d $PKG/usr/share/gimp/2.0/help cp -r images $PKG/usr/share/gimp/2.0/help cp -r html/en $PKG/usr/share/gimp/2.0/help # make mrproper find $PKG/usr/share/gimp/2.0/help/images -type d -name 'cs' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'de' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'es' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'fr' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'hr' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'it' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'ko' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'lt' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'nl' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'no' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'ru' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type d -name 'zh_CN' -print | xargs rm -fr find $PKG/usr/share/gimp/2.0/help/images -type f -name *.png -print | xargs chmod 644 find $PKG/usr/share/gimp/2.0/help/images -type f -name *.jpg -print | xargs chmod 644 }