Difference between revisions of "GPL Ghostscript"

From CBLFS
Jump to navigationJump to search
(I added the package description.)
Line 7: Line 7:
 
----
 
----
  
== Introdution to GPL Ghostscript ==
+
== Introduction to GPL Ghostscript ==
  
 
The GPL Ghostscript package provides an interpreter for the PostScript language and the PDF file format,  
 
The GPL Ghostscript package provides an interpreter for the PostScript language and the PDF file format,  

Revision as of 05:46, 22 January 2007

Download Source: http://prdownloads.sourceforge.net/ghostscript/ghostscript-8.62.0-gpl.tar.bz2

Introduction to GPL Ghostscript

The GPL Ghostscript package provides an interpreter for the PostScript language and the PDF file format, a set of C procedures (the Ghostscript library) that implement the graphics capabilities that appear as primitive operations in the PostScript language, and a wide variety of output drivers for various file formats and printers.

Project Home Page: http://www.gnu.org/software/ghostscript/ghostscript.html

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr  &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc -m32" LDFLAGS="-L/usr/lib" ./configure --prefix=/usr
make

Install the package

make install

N32

TO DO!

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install