aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Trilling2013-03-02 09:46:30 -0500
committerJack Nagel2013-03-10 23:26:28 -0500
commite469bc04fd6818e4772bcd6a7213d5fbede27703 (patch)
tree6345588632a4160e3589d5de2b54d07f5a9153e9 /Library
parent2b164ecb28f1e430a4aa8c20481c0fde26cd71e9 (diff)
downloadhomebrew-e469bc04fd6818e4772bcd6a7213d5fbede27703.tar.bz2
New formula: simple-tiles
Closes #18187. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/simple-tiles.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/simple-tiles.rb b/Library/Formula/simple-tiles.rb
new file mode 100644
index 000000000..474e35c26
--- /dev/null
+++ b/Library/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