The libmng libraries are used by programs wanting to read and write Multiple-image Network Graphics (MNG) files which are the animation equivalents to PNG files.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://downloads.sourceforge.net/libmng/libmng-2.0.2.tar.xz
Download MD5 sum: 3804bf2523af9b4e0670b5982b3bf984
Download size: 932 KB
Estimated disk space required: 15 MB
Estimated build time: 0.2 SBU
libjpeg-turbo-1.3.0 and Little CMS-2.5
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libmng
Install libmng by running the following commands:
sed -i "s:#include <jpeg:#include <stdio.h>\n&:" libmng_types.h && ./configure --prefix=/usr --disable-static && make
This package does not come with a test suite.
Now, as the root
user:
make install && install -v -m755 -d /usr/share/doc/libmng-2.0.2 && install -v -m644 doc/*.txt /usr/share/doc/libmng-2.0.2
sed -i "..." libmng_types.h: This command adds a missing header which would cause other apps that link to this package fail to compile.
--disable-static
: This
switch prevents installation of static versions of the libraries.
Last updated on 2013-08-23 13:56:44 -0700