c3df841fc9
libspatialite: * completely refactored CSV/TXT reader * now supporting KML and GML geometry output [AsKML(), AsGml()] * introduced a new SQL function supporting easy WGS84 POINTs filtering: PtDistWithin() * fixed several memory leaks (mainly related with the new WKT parser introduced in RC-3) * fixed some bugs * major updates to the build scripts * update: SQLite v.3.7.3 [introducing Geometry Callbacks support: RTreeIntersects(), RTreeWithin(), RTreeContains(), RTreeDistWithin()] spatialite-tools * for the sake of clarity the spatialite_osm tool has been renamed as spatialite_osm_net * new CLI tool: spatialite_osm_raw * major updates to the build scripts Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
537 B
Ruby
19 lines
537 B
Ruby
require 'formula'
|
|
|
|
class Libspatialite <Formula
|
|
url 'http://www.gaia-gis.it/spatialite-2.4.0-4/libspatialite-amalgamation-2.4.0.tar.gz'
|
|
version '2.4.0-rc4'
|
|
homepage 'http://www.gaia-gis.it/spatialite/'
|
|
md5 'e8c863d55766055564b44e606f2be51d'
|
|
|
|
depends_on 'proj'
|
|
depends_on 'geos'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--target=macosx"
|
|
system "make install"
|
|
end
|
|
end
|