2013-03-02 14:46:30 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class SimpleTiles < Formula
|
2013-04-07 02:34:41 +00:00
|
|
|
homepage 'http://propublica.github.io/simple-tiles/'
|
2013-04-20 18:06:22 +00:00
|
|
|
url 'https://github.com/propublica/simple-tiles/archive/v0.3.2.tar.gz'
|
|
|
|
sha1 'acb970264d33c40331bbf7b2acfb9c7683c21e05'
|
2013-03-02 14:46:30 +00:00
|
|
|
|
|
|
|
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
|