diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-11-10 15:40:13 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-11-10 15:40:13 -0300 |
commit | 670af4204ef3b1963ef9529cd420dfeb4d66cd84 (patch) | |
tree | f8c093cf4040e38a91395ef841572fcf3ac53ed8 /libre/ghostscript-libre/SRCBUILD | |
parent | 8c6397096a684881fb3e15f3685f06861d0b685d (diff) |
libre/ghostscript-libre-9.04-5
Diffstat (limited to 'libre/ghostscript-libre/SRCBUILD')
-rw-r--r-- | libre/ghostscript-libre/SRCBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/ghostscript-libre/SRCBUILD b/libre/ghostscript-libre/SRCBUILD new file mode 100644 index 000000000..d7cac0a76 --- /dev/null +++ b/libre/ghostscript-libre/SRCBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 123066 2011-05-07 23:01:49Z stephane $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Maintainer (Parabola): xihh + +pkgname=ghostscript-libre +pkgver=9.04 +pkgrel=5 +pkgdesc="An interpreter for the PostScript language without non-free files" +arch=('any') +license=('GPL3') #non free files removed +url="http://www.ghostscript.com/" +source=(http://downloads.ghostscript.com/public/ghostscript-${pkgver}.tar.bz2) +md5sums=('9f6899e821ab6d78ab2c856f10fa3023') +options=(!strip !docs !libtool !emptydirs !zipman !purge) + +build() { + cd ${srcdir}/ghostscript-${pkgver} + + export PKGEXT=.src.tar.xz + + # delete non-free packages + grep -l "are not altered" Resource/CMap/* | xargs rm -fv +} + +package() { + cd ${srcdir} + export PKGEXT=.src.tar.xz + + mv ghostscript-${pkgver} ${pkgdir}/ + +} |