Exiv2 is a C++ library and a command line utility for managing image and video metadata.
This package is known to build and work properly using an LFS-8.2 platform.
Download (HTTP): http://www.exiv2.org/builds/exiv2-0.26-trunk.tar.gz
Download MD5 sum: 5399e3b570d7f9205f0e76d47582da4c
Download size: 5.4 MB
Estimated disk space required: 39 MB
Estimated build time: 1.2 SBU
Doxygen-1.8.14, Graphviz-2.40.1, and libxslt-1.1.32
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/exiv2
Install Exiv2 by running the following commands:
./configure --prefix=/usr     \
            --enable-video    \
            --enable-webready \
            --without-ssh     \
            --disable-static  &&
make
        This package does not come with a test suite.
          Now, as the root user:
        
make install && chmod -v 755 /usr/lib/libexiv2.so
          --enable-video: This switch
          enables managing video metadata.
        
          --enable-webready: This
          switch enables managing web image metadata.
        
          --without-ssh: This switch
          is necessary when webready is enabled and libssh is not installed. Libssh is
          required for ssh.
        
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
          --without-curl: This switch is
          necessary when webready is enabled and cURL-7.58.0 is not
          installed. Libcurl is required for http.
        
Last updated on 2018-02-19 15:32:22 -0800