cbe9ac3e0a
New version of simple tiles with fixes for extreme projections. Closes Homebrew/homebrew#26401. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
19 lines
479 B
Ruby
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.4.0.tar.gz'
|
|
sha1 '7ab95f5bd697ac00e8a5406e26007dc717734209'
|
|
|
|
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
|