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-9.0 platform.
Download (HTTP): http://www.exiv2.org/builds/exiv2-0.27.2-Source.tar.gz
Download MD5 sum: 8c39c39dc8141bb158e8e9d663bcbf21
Download size: 26 MB
Estimated disk space required: 70 MB
Estimated build time: 0.2 SBU (Using parallelism=4)
Doxygen-1.8.16, Graphviz-2.40.1, and libxslt-1.1.33
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/exiv2
Install Exiv2 by running the following commands:
mkdir build &&
cd    build &&
cmake -DCMAKE_INSTALL_PREFIX=/usr  \
      -DCMAKE_BUILD_TYPE=Release   \
      -DEXIV2_ENABLE_VIDEO=yes     \
      -DEXIV2_ENABLE_WEBREADY=yes  \
      -DEXIV2_ENABLE_CURL=yes      \
      -DEXIV2_BUILD_SAMPLES=no     \
      -G "Unix Makefiles" .. &&
make
        This package does not come with a test suite.
          Now, as the root user:
        
make install
          -DEXIV2_ENABLE_VIDEO=yes:
          This switch enables managing video metadata.
        
          -DEXIV2_ENABLE_WEBREADY=yes: This
          switch enables managing web image metadata.
        
          -DEXIV2_BUILD_SAMPLES=no:
          This switch is necessary to suppress building and installing sample
          programs. If the sample programs are built, 34 additional programs
          are installed in /usr/bin.
        
          -DEXIV2_ENABLE_CURL=yes:
          This switch is necessary to enable network/http capabilities.
        
Last updated on 2019-08-19 11:11:15 -0700