Exiv2: Difference between revisions

From CBLFS
Jump to navigationJump to search
Zlib is in the base system and is expected to be installed.
No edit summary
Line 17: Line 17:
Compile the package:
Compile the package:


  ./configure --prefix=/usr --disable-dependency-tracking
  ./configure --prefix=/usr --disable-dependency-tracking &&
  make
  make


Install the package
Install the package:


  make install
  make install
Line 28: Line 28:
=== 32Bit ===
=== 32Bit ===


TO DO
Compile the package:
 
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
./configure --prefix=/usr --disable-dependency-tracking &&
make
 
Install the package:
 
make install &&
mv -v /usr/bin/exiv2-config{,-32}


=== N32 ===
=== N32 ===


TO DO
Compile the package:
 
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
    --disable-dependency-tracking &&
make
 
Install the package:
 
make install &&
mv -v /usr/bin/exiv2-config{,-n32}


=== 64Bit ===
=== 64Bit ===


TO DO
Compile the package:
 
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
    --disable-dependency-tracking &&
make
 
Install the package:
 
make install &&
mv -v /usr/bin/exiv2-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/exiv2-config


= Contents =
= Contents =

Revision as of 07:13, 23 December 2006

Download Source: http://www.exiv2.org/exiv2-0.12.tar.gz

Introduction to Exiv2

Exiv2 is a library and a command line utility to access image metadata. It is used by digikam.

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr --disable-dependency-tracking &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
./configure --prefix=/usr --disable-dependency-tracking &&
make

Install the package:

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

N32

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
    --disable-dependency-tracking &&
make

Install the package:

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

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
    --disable-dependency-tracking &&
make

Install the package:

make install &&
mv -v /usr/bin/exiv2-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/exiv2-config

Contents

Installed Programs: exiv2 and exiv2-config
Installed Libraries: libexiv2.{la,a,so}
Installed Directories: /usr/include/exiv2
Retrieved from "?title=Exiv2&oldid=6068"