# Description: Postscript interpreter
# URL:         http://www.cs.wisc.edu/~ghost/doc/gnu/index.htm
# Maintainer:  Jürgen Daubert, juergen dot daubert at t-online dot de
# Depends on:  cups, x11

name=ghostscript
version=8.15.4
release=1
source=(http://ftp.easysw.com/pub/$name/$version/espgs-$version-source.tar.bz2 \
        http://dl.sourceforge.net/sourceforge/gs-fonts/$name-fonts-std-8.11.tar.gz) 

build () {
    cd espgs-$version
    ./configure --prefix=/usr \
                --enable-cups \
                --with-drivers=ALL
    make
    make install_prefix=$PKG install
    cp -r $SRC/fonts $PKG/usr/share/ghostscript
   
    chown root:lp $PKG/etc/cups
    rm -r $PKG/usr/{share/ghostscript/8.15/{examples,doc},man/de}
    rm $PKG/usr/share/ghostscript/fonts/[CRT]*
}
