homebrew-core/Formula/gdal.rb
2018-03-23 19:18:02 +01:00

145 lines
4.8 KiB
Ruby

class Gdal < Formula
desc "Geospatial Data Abstraction Library"
homepage "http://www.gdal.org/"
url "https://download.osgeo.org/gdal/2.2.4/gdal-2.2.4.tar.xz"
sha256 "441eb1d1acb35238ca43a1a0a649493fc91fdcbab231d0747e9d462eea192278"
bottle do
sha256 "e12a190d34c9b0e93bdad0b0511b66b4ea30d88a1eb421139a1692c5319a3568" => :high_sierra
sha256 "e5b261299699570aacc75f5d97a85c9e6ff834f46d0561d63557c5efdedd6196" => :sierra
sha256 "1f5ce5618a147582fdb21c786def1b14ad170c561cacf504612b62f30a50a952" => :el_capitan
end
head do
url "https://svn.osgeo.org/gdal/trunk/gdal"
depends_on "doxygen" => :build
end
option "with-complete", "Use additional Homebrew libraries to provide more drivers."
option "with-unsupported", "Allow configure to drag in any library it can find. Invoke this at your own risk."
deprecated_option "enable-unsupported" => "with-unsupported"
deprecated_option "complete" => "with-complete"
depends_on "freexl"
depends_on "geos"
depends_on "giflib"
depends_on "jpeg"
depends_on "json-c"
depends_on "libgeotiff"
depends_on "libpng"
depends_on "libpq"
depends_on "libspatialite"
depends_on "libtiff"
depends_on "libxml2"
depends_on "pcre"
depends_on "proj"
depends_on "sqlite" # To ensure compatibility with SpatiaLite
depends_on "mysql" => :optional
if build.with? "complete"
depends_on "cfitsio"
depends_on "epsilon"
depends_on "hdf5"
depends_on "jasper"
depends_on "json-c"
depends_on "libdap"
depends_on "libxml2"
depends_on "netcdf"
depends_on "podofo"
depends_on "poppler"
depends_on "unixodbc" # macOS version is not complete enough
depends_on "webp"
depends_on "xerces-c"
depends_on "xz" # get liblzma compression algorithm library from XZutils
end
def install
args = [
# Base configuration
"--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-debug",
"--with-libtool",
"--with-local=#{prefix}",
"--with-opencl",
"--with-threads",
# GDAL native backends
"--with-bsb",
"--with-grib",
"--with-pam",
"--with-pcidsk=internal",
"--with-pcraster=internal",
# Homebrew backends
"--with-curl=/usr/bin/curl-config",
"--with-freexl=#{Formula["freexl"].opt_prefix}",
"--with-geos=#{Formula["geos"].opt_prefix}/bin/geos-config",
"--with-geotiff=#{Formula["libgeotiff"].opt_prefix}",
"--with-gif=#{Formula["giflib"].opt_prefix}",
"--with-jpeg=#{Formula["jpeg"].opt_prefix}",
"--with-libjson-c=#{Formula["json-c"].opt_prefix}",
"--with-libtiff=#{Formula["libtiff"].opt_prefix}",
"--with-pg=#{Formula["libpq"].opt_prefix}/bin/pg_config",
"--with-png=#{Formula["libpng"].opt_prefix}",
"--with-spatialite=#{Formula["libspatialite"].opt_prefix}",
"--with-sqlite3=#{Formula["sqlite"].opt_prefix}",
"--with-static-proj4=#{Formula["proj"].opt_prefix}",
# Explicitly disable some features
"--without-grass",
"--without-jpeg12",
"--without-libgrass",
"--without-perl",
"--without-php",
"--without-python",
"--without-ruby",
"--with-armadillo=no",
]
if build.with?("mysql")
args << "--with-mysql=#{Formula["mysql"].opt_prefix}/bin/mysql_config"
else
args << "--without-mysql"
end
# Optional Homebrew packages supporting additional formats
supported_backends = %w[liblzma cfitsio hdf5 netcdf jasper xerces odbc
dods-root epsilon webp podofo]
if build.with? "complete"
supported_backends.delete "liblzma"
args << "--with-liblzma=yes"
args.concat supported_backends.map { |b| "--with-" + b + "=" + HOMEBREW_PREFIX }
elsif build.without? "unsupported"
args.concat supported_backends.map { |b| "--without-" + b }
end
# Unsupported backends are either proprietary or have no compatible version
# in Homebrew. Podofo is disabled because Poppler provides the same
# functionality and then some.
unsupported_backends = %w[gta ogdi fme hdf4 openjpeg fgdb ecw kakadu mrsid
jp2mrsid mrsid_lidar msg oci ingres dwgdirect
idb sde podofo rasdaman sosi]
if build.without? "unsupported"
args.concat unsupported_backends.map { |b| "--without-" + b }
end
system "./configure", *args
system "make"
system "make", "install"
system "make", "man" if build.head?
# Force man installation dir: https://trac.osgeo.org/gdal/ticket/5092
system "make", "install-man", "INST_MAN=#{man}"
# Clean up any stray doxygen files
Dir.glob("#{bin}/*.dox") { |p| rm p }
end
test do
# basic tests to see if third-party dylibs are loading OK
system "#{bin}/gdalinfo", "--formats"
system "#{bin}/ogrinfo", "--formats"
end
end