homebrew-core/Formula/librasterlite.rb

21 lines
677 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Librasterlite < Formula
2012-01-08 22:11:19 +00:00
homepage 'https://www.gaia-gis.it/fossil/librasterlite/index'
2012-06-08 01:31:57 +00:00
url 'http://www.gaia-gis.it/gaia-sins/librasterlite-sources/librasterlite-1.1c.tar.gz'
sha1 'c54f38ef2974bc92410e2c2196088af14bd9c21a'
2012-09-02 08:04:22 +00:00
depends_on "pkg-config" => :build unless MacOS.mountain_lion?
depends_on :libpng
depends_on "libgeotiff"
depends_on "libspatialite"
def install
# Ensure Homebrew SQLite libraries are found before the system SQLite
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
2012-01-08 22:11:19 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end