homebrew-core/Formula/osm2pgsql.rb

28 lines
776 B
Ruby
Raw Normal View History

require 'formula'
class Osm2pgsql < Formula
homepage 'http://wiki.openstreetmap.org/wiki/Osm2pgsql'
url 'https://github.com/openstreetmap/osm2pgsql/archive/0.84.0.tar.gz'
sha1 '42145c39596580680f120a07a4f30f97a86a3698'
depends_on :postgresql
2014-06-01 01:39:27 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "geos"
depends_on "proj"
depends_on "protobuf-c" => :optional
def install
2014-02-27 04:29:12 +00:00
args = ["--with-proj=#{Formula["proj"].opt_prefix}"]
if build.with? "protobuf-c"
2014-02-27 04:29:12 +00:00
args << "--with-protobuf-c=#{Formula["protobuf-c"].opt_prefix}"
end
system "./autogen.sh"
system "./configure", *args
system "make"
bin.install "osm2pgsql"
(share+'osm2pgsql').install 'default.style'
end
end