Difference between revisions of "Libpng"
From CBLFS
Jump to navigationJump to searchm |
(I added the package description from BLFS.) |
||
Line 7: | Line 7: | ||
---- | ---- | ||
+ | |||
+ | == Introduction to Libpng == | ||
+ | |||
+ | The Libpng package contains libraries used by other programs for reading and writing PNG files. | ||
== Dependencies == | == Dependencies == |
Revision as of 20:21, 2 December 2006
Download Source: | http://prdownloads.sourceforge.net/libpng/libpng-1.2.12.tar.bz2 |
---|
Contents
Introduction to Libpng
The Libpng package contains libraries used by other programs for reading and writing PNG files.
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install && install -v -m755 -d /usr/share/doc/libpng-1.2.12 && install -v -m644 README libpng.txt /usr/share/doc/libpng-1.2.12
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install && mv -v /usr/bin/libpng12-config{,-32} && ln -sfv libpng12-config-32 /usr/bin/libpng-config-32
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install && mv -v /usr/bin/libpng12-config{,-n32} && ln -sfv libpng12-config-n32 /usr/bin/libpng-config-n32
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install && mv -v /usr/bin/libpng12-config{,-64} && ln -sfv libpng12-config-64 /usr/bin/libpng-config-64 && ln -sfv multiarch_wrapper /usr/bin/libpng-config && ln -sfv multiarch_wrapper /usr/bin/libpng12-config && install -v -m755 -d /usr/share/doc/libpng-1.2.12 && install -v -m644 README libpng.txt /usr/share/doc/libpng-1.2.12