homebrew-core/Formula/libgaiagraphics.rb
Charlie Sharpsteen 01deaa5051 Use stable urls for all Gaia-SINS projects
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.
2012-05-05 10:23:21 -07:00

19 lines
524 B
Ruby

require 'formula'
class Libgaiagraphics < Formula
homepage 'https://www.gaia-gis.it/fossil/libgaiagraphics/index'
url 'http://www.gaia-gis.it/gaia-sins/gaiagraphics-sources/libgaiagraphics-0.4b.tar.gz'
md5 '6e7c703faad9de3beea296aa9508eec2'
depends_on 'libgeotiff'
depends_on 'jpeg'
# Leopard's Cairo is too old.
depends_on 'cairo' if MacOS.leopard?
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end