Actions
  Building on Ubuntu using Cmake » History » Revision 3
      « Previous |
    Revision 3/16
      (diff)
      | Next »
    
    Nehal J Wani, 14 Aug 2014 03:46 
    
    
Building on Ubuntu using Automake¶
- This has been tested on Ubuntu14.04 64bit minimal install.
- Last revision on which this method was tested: r3288
- This wiki page assumes that installation prefix is /usr/local and your build-dir is ~/gnu
- Install some of the basic utilitiessudo apt-get update sudo apt-get install -y subversion make autoconf pkg-config g++ 
- Install all the dependencies for building exiv2. Since exiv2 is already available in the Ubuntu repositories, this method makes life easier. sudo apt-get build-dep -y exiv2 
 In case you get the error ...E: You must put some 'source' URIs in your sources.list", 
 .. then edit /etc/apt/sources.list . Copy all lines starting with 'deb' and replace the first word of these lines from 'deb' to 'deb-src' in their copied versions.
- Fetch the source code:mkdir -p ~/gnu/exiv2 cd ~/gnu/exiv2 svn checkout svn://dev.exiv2.org/svn/trunk cd trunk 
- Start building exiv2mkdir build cd build cmake .. 
- Building samplesexport PKG_CONFIG_PATH=/usr/local/lib/pkgconfig make samples 
- Building tests.
	- Running tests requires one additional package:sudo apt-get install -y exifprobe 
- Finally:cd ~/gnu/exiv2/trunk make tests 
 
- Running tests requires one additional package:
Updated by Nehal J Wani over 7 years ago · 3 revisions