2010-02-10 10:57:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class SpatialiteTools < Formula
|
2012-01-08 22:04:13 +00:00
|
|
|
homepage 'https://www.gaia-gis.it/fossil/spatialite-tools/index'
|
2013-07-10 03:51:13 +00:00
|
|
|
url 'http://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/spatialite-tools-4.1.1.tar.gz'
|
|
|
|
sha1 '0af3de926b8086287ef31ebba5d8327ee18d14bd'
|
2012-09-05 18:35:57 +00:00
|
|
|
|
2010-11-30 09:40:58 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-02-10 10:57:56 +00:00
|
|
|
depends_on 'libspatialite'
|
2012-05-07 18:01:27 +00:00
|
|
|
depends_on 'readosm'
|
2010-02-10 10:57:56 +00:00
|
|
|
|
|
|
|
def install
|
2013-12-14 18:13:11 +00:00
|
|
|
# See: https://github.com/Homebrew/homebrew/issues/3328
|
2012-03-11 22:04:50 +00:00
|
|
|
ENV.append 'LDFLAGS', '-liconv'
|
2012-05-07 20:56:45 +00:00
|
|
|
# Ensure Homebrew SQLite is found before system SQLite.
|
2014-02-27 04:33:23 +00:00
|
|
|
sqlite = Formula["sqlite"]
|
2014-03-06 05:28:31 +00:00
|
|
|
ENV.append 'LDFLAGS', "-L#{sqlite.opt_lib}"
|
|
|
|
ENV.append 'CFLAGS', "-I#{sqlite.opt_include}"
|
2012-05-07 20:56:45 +00:00
|
|
|
|
2012-01-08 22:04:13 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2012-05-07 18:01:27 +00:00
|
|
|
"--prefix=#{prefix}"
|
2010-02-10 10:57:56 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|