From f5bd5a7e86dbef0fbd0739578e77e2a277c43781 Mon Sep 17 00:00:00 2001 From: Adam Trilling Date: Sat, 2 Mar 2013 09:46:30 -0500 Subject: [PATCH] New formula: simple-tiles Closes Homebrew/homebrew#18187. Signed-off-by: Jack Nagel --- Formula/simple-tiles.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Formula/simple-tiles.rb diff --git a/Formula/simple-tiles.rb b/Formula/simple-tiles.rb new file mode 100644 index 00000000000..474e35c2610 --- /dev/null +++ b/Formula/simple-tiles.rb @@ -0,0 +1,19 @@ +require 'formula' + +class SimpleTiles < Formula + homepage 'http://propublica.github.com/simple-tiles/' + url 'https://github.com/propublica/simple-tiles/archive/0.3.0.tar.gz' + sha1 'c0c677b3b212457abc6a39ced4ee3e767be8e885' + + 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