Changes between Version 10 and Version 11 of programmersguide/debianpackage


Ignore:
Timestamp:
05/10/17 11:11:53 (9 years ago)
Author:
jano.simas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • programmersguide/debianpackage

    v10 v11  
    33== Generating a package == 
    44 
    5 To generate the Debian package from a fresh git clone you'll need: 
    6  
    7   - cmake 
    8   - build-essential 
    9   - libcurl3-dev 
    10   - libpython2.7-dev 
    11   - libquazip0-dev 
    12   - libproj-dev 
    13   - libgeos++-dev 
    14   - libxerces-c-dev 
    15  
    16 All can be installed with the command: 
    17  
    18 **Ubuntu 14.04** 
    19   {{{ 
    20   sudo apt-get install cmake build-essential libcurl3-dev libpython2.7-dev libquazip0-dev libproj-dev libgeos++-dev libxerces-c-dev 
    21   }}} 
    22 **Ubuntu 16.04** 
    23   {{{ 
    24   sudo apt-get install cmake build-essential libcurl3-dev libpython2.7-dev libquazip-dev libproj-dev libgeos++-dev libxerces-c-dev 
    25   }}} 
    26  
    27 We also need the **vmime** library, as the ubuntu version is outdated we should use the **Terrama2** or **git** version. 
    28   
    29 To install use: 
    30 {{{ 
    31 sudo dpkg -i terrama2-vmime_1.0.0_amd64.deb 
    32 sudo apt-get install -f -y 
    33 }}} 
     5To generate the Debian package foolow the instructions to [wiki:programmersguide/compilating compile the TerraMA2]. 
    346 
    357Once everything is installed go to the folder: 
     
    4012 
    4113You'll find the Debian package in the folder **build-package** at the same path level of your codebase folder. 
    42  
    43 === Developer's environment === 
    44  
    45 To fully compile the **Terrama2** you may also need the **GMock** library. 
    4614 
    4715== Installing the Debian package ==