homebrew-core/Formula/simple-tiles.rb
Jeff Larson 9f9e661e4b simple-tiles 0.4.1
Closes Homebrew/homebrew#26585.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-11 21:04:45 -08:00

19 lines
479 B
Ruby

require 'formula'
class SimpleTiles < Formula
homepage 'http://propublica.github.io/simple-tiles/'
url 'https://github.com/propublica/simple-tiles/archive/v0.4.1.tar.gz'
sha1 'fae2f115bf99e725f8fe38dc011718ec1364ed6f'
head 'https://github.com/propublica/simple-tiles.git'
depends_on "pkg-config" => :build
depends_on "cairo"
depends_on "gdal"
depends_on "pango"
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end