homebrew-core/Formula/simple-tiles.rb
Jeff Larson a61cd90d50 simple-tiles 0.3.2
Closes Homebrew/homebrew#19325.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-04-20 11:12:13 -07: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.3.2.tar.gz'
sha1 'acb970264d33c40331bbf7b2acfb9c7683c21e05'
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