Libmng: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 59: | Line 59: | ||
Install the package | Install the package | ||
make install | |||
=== 64Bit === | === 64Bit === | ||
Revision as of 01:55, 20 August 2009
| Download Source: | http://prdownloads.sourceforge.net/libmng/libmng-1.0.10.tar.gz |
|---|
Introduction to Libmng
The Libmng library supports decoding, displaying, encoding, and various other manipulations of the Multiple-image Network Graphics (MNG) format image files.
Project Homepage: http://gjuyn.xs4all.nl/libmng/
Dependencies
Required
Non-Multilib
Compile the package:
ln -sf makefiles/configure.in . && ln -sf makefiles/Makefile.am . && autoreconf -f -i && ./configure --prefix=/usr && make
Install the package
make install
install -dv -m755 /usr/share/doc/libmng-1.0.10 &&
install -v -m644 doc/*.{png,txt} /usr/share/doc/libmng-1.0.10
Multilib
32Bit
Compile the package:
ln -sf makefiles/configure.in . &&
ln -sf makefiles/Makefile.am . &&
autoreconf -f -i &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make
Install the package
make install
N32
Compile the package
ln -sf makefiles/configure.in . &&
ln -sf makefiles/Makefile.am . &&
autoreconf -f -i &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package
make install
64Bit
Compile the package
ln -sf makefiles/configure.in . &&
ln -sf makefiles/Makefile.am . &&
autoreconf -f -i &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install
install -dv -m755 /usr/share/doc/libmng-1.0.10 &&
install -v -m644 doc/*.{png,txt} /usr/share/doc/libmng-1.0.10
Contents
| Installed Programs: | None |
|---|---|
| Installed Libraries: | libmng.{so,a} |
| Installed Directories: | /usr/share/doc/libmng-1.0.10 |
Short Descriptions
| libmng.{so,a} | provides functions for programs wishing to read and write MNG files which are animation files without the patent problems associated with certain other formats. |
|---|