Difference between revisions of "Imlib"

From CBLFS
Jump to navigationJump to search
 
(I added the package description from BLFS.)
Line 6: Line 6:
  
 
----
 
----
 +
 +
== Introduction to Imlib 1 ==
 +
 +
The Imlib package contains image libraries. These are useful for loading, rendering and dithering a wide variety of image data formats.
  
 
== Dependencies ==
 
== Dependencies ==

Revision as of 21:12, 2 December 2006

Download Source: http://ftp.gnome.org/pub/gnome/sources/imlib/1.9/imlib-1.9.15.tar.bz2

Introduction to Imlib 1

The Imlib package contains image libraries. These are useful for loading, rendering and dithering a wide variety of image data formats.

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --sysconfdir=/etc/imlib &&
make

Install the package

make install &&
install -v -m755 -d /usr/share/doc/imlib-1.9.15 &&
install -v -m644 doc/{index.html,*.gif} /usr/share/doc/imlib-1.9.15

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr \
    --sysconfdir=/etc/imlib &&
make

Install the package

make install &&
mv -v /usr/bin/imlib-config{,-32}

N32

Compile the package:

CC="gcc ${BUILDN32}" USE_ARCH=n32 ./configure --prefix=/usr \
    --sysconfdir=/etc/imlib --libdir=/usr/lib32 &&
make

Install the package

make install &&
mv -v /usr/bin/imlib-config{,-n32}

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr \
    --sysconfdir=/etc/imlib --libdir=/usr/lib64 &&
make

Install the package

make install &&
mv -v /usr/bin/imlib-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/imlib-config &&
install -v -m755 -d /usr/share/doc/imlib-1.9.15 &&
install -v -m644 doc/{index.html,*.gif} /usr/share/doc/imlib-1.9.15