Libpng: Difference between revisions
From CBLFS
Jump to navigationJump to search
I added the package description from BLFS. |
I added the "Contents" section from BLFS. |
||
| Line 1: | Line 1: | ||
{| style="text-align: left; background-color: AliceBlue;" | {| style="text-align: left; background-color: AliceBlue;" | ||
|- | |-valign="top" | ||
!Download Source: | !Download Source: | ||
| http://prdownloads.sourceforge.net/libpng/libpng-1.2.12.tar.bz2 | | http://prdownloads.sourceforge.net/libpng/libpng-1.2.12.tar.bz2 | ||
|} | |} | ||
| Line 71: | Line 70: | ||
install -v -m755 -d /usr/share/doc/libpng-1.2.12 && | install -v -m755 -d /usr/share/doc/libpng-1.2.12 && | ||
install -v -m644 README libpng.txt /usr/share/doc/libpng-1.2.12 | install -v -m644 README libpng.txt /usr/share/doc/libpng-1.2.12 | ||
= Contents = | |||
{| style="text-align: left;" | |||
|-valign="top" | |||
! Installed Programs: | |||
| libpng-config and libpng12-config | |||
|-valign="top" | |||
! Installed Libraries: | |||
| libpng.so and libpng12.{so,a} | |||
|-valign="top" | |||
! Installed Directories: | |||
| /usr/include/libpng12 and /usr/share/doc/libpng-1.2.12 | |||
|} | |||
=== Short Descriptions === | |||
{| style="text-align: left;" | |||
|-valign="top" | |||
! libpng-config | |||
| is a symlink to '''libpng12-config'''. | |||
|-valign="top" | |||
! libpng12-config | |||
| provides configuration information for libpng. | |||
|-valign="top" | |||
! libpng.so and libpng12.{so,a} | |||
| are a collection of routines used to create and manipulate PNG format graphics files. The PNG format was designed as a replacement for GIF and, to a lesser extent, TIFF, with many improvements and extensions and lack of patent problems. | |||
|} | |||
Revision as of 04:51, 13 December 2006
| Download Source: | http://prdownloads.sourceforge.net/libpng/libpng-1.2.12.tar.bz2 |
|---|
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
Contents
| Installed Programs: | libpng-config and libpng12-config |
|---|---|
| Installed Libraries: | libpng.so and libpng12.{so,a} |
| Installed Directories: | /usr/include/libpng12 and /usr/share/doc/libpng-1.2.12 |
Short Descriptions
| libpng-config | is a symlink to libpng12-config. |
|---|---|
| libpng12-config | provides configuration information for libpng. |
| libpng.so and libpng12.{so,a} | are a collection of routines used to create and manipulate PNG format graphics files. The PNG format was designed as a replacement for GIF and, to a lesser extent, TIFF, with many improvements and extensions and lack of patent problems. |