spatialite-tools 4.3.0

Closes Homebrew/homebrew#41379.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Alex Dunn 2015-07-05 11:18:25 -07:00 committed by Dominyk Tiller
parent 52dfee2ad8
commit 48740aa839

View file

@ -1,9 +1,8 @@
class SpatialiteTools < Formula
desc "CLI tools supporting SpatiaLite"
homepage 'https://www.gaia-gis.it/fossil/spatialite-tools/index'
url "http://www.gaia-gis.it/gaia-sins/spatialite-tools-4.2.0.tar.gz"
sha1 "de07042afa734b17c840318fa8772466f53f1831"
revision 2
homepage "https://www.gaia-gis.it/fossil/spatialite-tools/index"
url "https://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/spatialite-tools-4.3.0.tar.gz"
sha256 "f739859bc04f38735591be2f75009b98a2359033675ae310dffc3114a17ccf89"
bottle do
cellar :any
@ -12,17 +11,17 @@ class SpatialiteTools < Formula
sha256 "fdf30d2303fe335c581d509dfb72e616b63b02507cc1992655f7aa771096c270" => :mountain_lion
end
depends_on 'pkg-config' => :build
depends_on 'libspatialite'
depends_on 'readosm'
depends_on "pkg-config" => :build
depends_on "libspatialite"
depends_on "readosm"
def install
# See: https://github.com/Homebrew/homebrew/issues/3328
ENV.append 'LDFLAGS', '-liconv'
ENV.append "LDFLAGS", "-liconv"
# Ensure Homebrew SQLite is found before system SQLite.
sqlite = Formula["sqlite"]
ENV.append 'LDFLAGS', "-L#{sqlite.opt_lib}"
ENV.append 'CFLAGS', "-I#{sqlite.opt_include}"
ENV.append "LDFLAGS", "-L#{sqlite.opt_lib}"
ENV.append "CFLAGS", "-I#{sqlite.opt_include}"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
@ -30,6 +29,6 @@ class SpatialiteTools < Formula
end
test do
system "#{bin}/spatialite --version"
system bin/"spatialite", "--version"
end
end