EO-College / sarbian

We’ve built a plug’n play Operation System (based on Debian Linux) with all the freely and openly available SAR processing software. No knowledge of installation steps needed, just download and get started with SAR data processing. SARbian is free for use in research, education or operational work.
https://eo-college.org/sarbian
GNU General Public License v3.0
59 stars 15 forks source link

SW GMT5SAR #4

Closed felixcremer closed 5 years ago

felixcremer commented 6 years ago

Installation of GMT5SAR

http://gmt.soest.hawaii.edu/projects/gmt5sar/wiki

Notes:

dependencies (based on Ubuntu 16.04 LTS):
    subversion (for checking out source code)
    csh
    autoconf
    libtiff5-dev
    libhdf5-dev
    gfortran
    g++
    libgmt-dev
    gmt
looks packagable with via the "configure/make/make install"-way
felixcremer commented 5 years ago

build_deps = [subversion, csh, autoconf, libtiff5-dev, libhdf5-dev, gfortran, g++, libgmt-dev, gmt]

felixcremer commented 5 years ago

We find the source code at https://github.com/gmtsar/gmtsar according to there installation tutorial we should do

$ svn co svn://gmtserver.soest.hawaii.edu/GMTSAR/trunk gmtsar-dev
$ cd gmtsar-dev
$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
$ make -j
$ make -j install

to install it.