* Gdal: Use includes from brewed sqlite
* spatialite-tools 4.1.0
* librasterlite 1.1g
* libgaiagraphics 0.5
* Update to use new style `build.with?`
ClosesHomebrew/homebrew#20341.
Signed-off-by: Samuel John <github@SamuelJohn.de>
Anything linking against SpatiaLite also needs to use Homebrew's SQLite so that
loadable extensions are enabled along with RTree indices.
This commit cleans up several formulae to use the specific `opt/sqlite/lib`
prefix rather than `HOMEBREW_PREFIX/lib` and also adds this searching to
`gdal`.
However, this hack is getting a little large. The best fix would probably be to
flag SQLite as `keg_only` so that lib path munging is handled automagically for
everything with a dependency tree that includes SQLite.
The MacOS.version? family of methods (other than "leopard?") are poorly
defined and lead to confusing code. Replace them in formulae with more
explicit comparisons.
"MacOS.version" is a special version object that can be compared to
numerics, symbols, and strings using the standard Ruby comparison
methods.
The old methods were moved to compat when the version comparison code
was merged, and they must remain there "forever", but they should not be
used in new code.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Ammend links for freexl, libspatialite, librasterlite, libgaiagraphics and
spatialite-tools to point at the archives rather than the front page.
The front page link breaks when new releases are made.
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
RasterLite is an add-on to the SpatiaLite GIS extention to Sqlite3
databases. RasterLite allows the storage of raster imagry as PNG,
GeoTIFF, GIF or JPEG imagas or using Wavelet Compression.
In addition to a library, RasterLite includes tools for managing raster
imagry in sqlite databases.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>