summaryrefslogtreecommitdiffstats
path: root/extra/ghostscript/Pkgfile
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-10 22:00:38 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-10 22:00:38 +0200
commitb4196a066ad15b4242588804730f5910cb3c5219 (patch)
tree863ea963e5b7b4b68300c6248d85d2a4d37d2914 /extra/ghostscript/Pkgfile
parent032e1d352d80ebd1fefb8df2643155768a5aeac2 (diff)
downloadnutyx-extra-b4196a066ad15b4242588804730f5910cb3c5219.tar.gz
nutyx-extra-b4196a066ad15b4242588804730f5910cb3c5219.tar.bz2
nutyx-extra-b4196a066ad15b4242588804730f5910cb3c5219.tar.xz
nutyx-extra-b4196a066ad15b4242588804730f5910cb3c5219.zip
Ajout de ghostscript#8.63-1
Diffstat (limited to 'extra/ghostscript/Pkgfile')
-rwxr-xr-xextra/ghostscript/Pkgfile26
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/ghostscript/Pkgfile b/extra/ghostscript/Pkgfile
new file mode 100755
index 000000000..12139db1e
--- /dev/null
+++ b/extra/ghostscript/Pkgfile
@@ -0,0 +1,26 @@
+# Description: Permet le rendu des documents Postscripts vers différentes cibles
+# URL: http://www.ghostscript.com/awki
+# Maintainer: Linux From Scratch
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: cups
+
+name=ghostscript
+version=8.63
+release=1
+source=( http://downloads.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2 \
+ ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/fonts/ghostscript-fonts-std-8.11.tar.gz\
+ http://ftp.gnu.org/pub/gnu/ghostscript/gnu-gs-fonts-other-6.0.tar.gz)
+
+build() {
+ cd $name-$version
+ sed -i "s/bbox.dev$/x11.dev/" Makefile.in
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --without-omni \
+ --enable-threads
+ make
+ make DESTDIR=$PKG install
+ cd ..
+ mv fonts $PKG/usr/share/ghostscript
+}