Difference between revisions of "Foomatic-filters"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |-valign="top" !Download Source: | http://www.openprinting.org/download/foomatic/foomatic-filters-3.0-current.tar.gz |} ---- {{P...) |
(→64Bit) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
|-valign="top" | |-valign="top" | ||
!Download Source: | !Download Source: | ||
− | | http://www.openprinting.org/download/foomatic/foomatic-filters- | + | | http://www.openprinting.org/download/foomatic/foomatic-filters-4.0-current.tar.gz |
|} | |} | ||
Line 26: | Line 26: | ||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=/usr --sysconfdir=/etc && | + | CC="gcc ${BUILD32}" ./configure --prefix=/usr --sysconfdir=/etc && |
− | |||
make | make | ||
Install the package | Install the package | ||
− | make install | + | make install |
=== N32 === | === N32 === | ||
Line 38: | Line 37: | ||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=/usr --libdir=/usr/lib32 \ | + | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \ |
--sysconfdir=/etc && | --sysconfdir=/etc && | ||
sed -i 's:/lib:/lib32:g' Makefile | sed -i 's:/lib:/lib32:g' Makefile | ||
Line 45: | Line 44: | ||
Install the package | Install the package | ||
− | make install | + | make install |
=== 64Bit === | === 64Bit === | ||
Line 51: | Line 50: | ||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=/usr --libdir=/usr/lib64 \ | + | CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \ |
--sysconfdir=/etc && | --sysconfdir=/etc && | ||
sed -i 's:/lib:/lib64:g' Makefile | sed -i 's:/lib:/lib64:g' Makefile |
Latest revision as of 03:46, 24 August 2009
Download Source: | http://www.openprinting.org/download/foomatic/foomatic-filters-4.0-current.tar.gz |
---|
Introduction to Foomatic-filters
Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix.
Project Homepage: Unknown
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr --sysconfdir=/etc && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \ --sysconfdir=/etc && sed -i 's:/lib:/lib32:g' Makefile make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \ --sysconfdir=/etc && sed -i 's:/lib:/lib64:g' Makefile make
Install the package
make install