blob: 4c7bd2a742561c35cf0a7fb62d9eb35a15106c5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|