/usr/bin/gmt-config is in libgmt-dev 5.2.1+dfsg-3build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | #!/bin/bash
#--------------------------------------------------------------------
# $Id: gmt-config.in 15178 2015-11-06 10:45:03Z fwobbe $
#
# Copyright (c) 1991-2015 by P. Wessel, W. H. F. Smith, R. Scharroo, J. Luis and F. Wobbe
# See LICENSE.TXT file for copying and redistribution conditions.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; version 3 or any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# Contact info: gmt.soest.hawaii.edu
#
# gmt-config simply reports various paths and settings that are useful
# to developers that need to include/link GMT5 resources.
#--------------------------------------------------------------------*/
#
GMT_EXEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
CONFIG_CFLAGS="-I/usr/include/gmt"
CONFIG_DATA=$($GMT_EXEDIR/gmt --show-datadir)
CONFIG_DEP_LIBS="/usr/lib/x86_64-linux-gnu/libnetcdf.so;/usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5_hl.so;/usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5.so;/usr/lib/x86_64-linux-gnu/libpthread.so;/usr/lib/x86_64-linux-gnu/libz.so;/usr/lib/x86_64-linux-gnu/libdl.so;/usr/lib/x86_64-linux-gnu/libm.so;/usr/lib/x86_64-linux-gnu/libcurl.so /usr/lib/libgdal.so;/usr/lib/x86_64-linux-gnu/libpcre.so;/usr/lib/x86_64-linux-gnu/libfftw3f.so;/usr/lib/x86_64-linux-gnu/libfftw3f_threads.so"
CONFIG_GSHHG=$($GMT_EXEDIR/gmt gmtget DIR_GSHHG)
CONFIG_DCW=$($GMT_EXEDIR/gmt gmtget DIR_DCW)
CONFIG_INCLUDEDIR="/usr/include/gmt"
CONFIG_LIBS="-L/usr/lib/x86_64-linux-gnu -lgmt"
CONFIG_PREFIX="/usr"
CONFIG_VERSION="5.2.1"
if [ "TRUE" == "TRUE" ]; then
CONFIG_FFTW_ENABLED=yes
else
CONFIG_FFTW_ENABLED=no
fi
if [ "TRUE" == "TRUE" ]; then
CONFIG_GDAL_ENABLED=yes
else
CONFIG_GDAL_ENABLED=no
fi
if [ "TRUE" == "TRUE" ]; then
CONFIG_PCRE_ENABLED=yes
else
CONFIG_PCRE_ENABLED=no
fi
if [ "" == "TRUE" ]; then
CONFIG_LAPACK_ENABLED=yes
else
CONFIG_LAPACK_ENABLED=no
fi
if [ 8 -eq 8 ]; then
CONFIG_BITS=64
else
CONFIG_BITS=32
fi
usage()
{
cat <<EOF
Usage: gmt-config [OPTIONS]
Available values for OPTIONS include:
--help display this help message and exit
--bits whether library is build 32-bit or 64-bit
--cflags pre-processor and compiler flags
--datadir GMT's data directory
--dcw location of used DCW
--dep-libs dependent libraries
--gshhg location of used GSHHG
--has-fftw whether FFTW is used in build
--has-gdal whether GDAL is used in build
--has-pcre whether PCRE is used in build
--has-lapack whether LAPACK is used in build
--includedir include directory
--libs library linking information
--prefix install prefix
--version library version
EOF
exit $1
}
[ -z "$1" ] && usage 1 1>&2
for arg in "$@"; do
case $arg in
--bits)
echo $CONFIG_BITS
;;
--cflags)
echo $CONFIG_CFLAGS
;;
--datadir)
echo $CONFIG_DATA
;;
--dcw)
echo $CONFIG_DCW
;;
--dep-libs)
echo ${CONFIG_DEP_LIBS//;/ }
;;
--gshhg)
echo $CONFIG_GSHHG
;;
--has-fftw)
echo $CONFIG_FFTW_ENABLED
;;
--has-gdal)
echo $CONFIG_GDAL_ENABLED
;;
--has-pcre)
echo $CONFIG_PCRE_ENABLED
;;
--has-lapack)
echo $CONFIG_LAPACK_ENABLED
;;
--includedir)
echo $CONFIG_INCLUDEDIR
;;
--libs)
echo $CONFIG_LIBS
;;
--prefix)
echo $CONFIG_PREFIX
;;
--version)
echo $CONFIG_VERSION
;;
*)
usage 1 1>&2
;;
esac
done
|