homebrew-core/Formula/osm2pgsql.rb
2015-06-05 14:47:57 +01:00

56 lines
1.8 KiB
Ruby

class Osm2pgsql < Formula
desc "Convert OpenStreetMap data to postGIS-enabled PostgreSQL db"
homepage "http://wiki.openstreetmap.org/wiki/Osm2pgsql"
url "https://github.com/openstreetmap/osm2pgsql/archive/0.87.0.tar.gz"
sha1 "6f302500e52d6e42147cc8dff8f344677e3131f8"
revision 1
bottle do
sha256 "6b1bc9ca723e3c8bf23c9bb5704fa99205a1037085d408102050da03ac703a5c" => :yosemite
sha256 "2835cacfecdbca3f00255cfc5b95107d54fa640e1eb1ca728520f4c252da983f" => :mavericks
sha256 "63c279201caf3f6c0359dbe27eb1c2e2a144cdf0cfd130ef6d218b95a9d009fe" => :mountain_lion
end
depends_on :postgresql
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "boost"
depends_on "geos"
depends_on "proj"
depends_on "protobuf-c" => :optional
# Fixes an upstream issue:
# https://github.com/openstreetmap/osm2pgsql/issues/196
# Remove the patch when upgrading
patch do
url "https://github.com/openstreetmap/osm2pgsql/commit/943684a9b86bee46d245970b3e5870f83afc9208.diff"
sha1 "01c681513959b285038b3582afc1c1d63e440209"
end
def install
args = [
"--prefix=#{prefix}",
"--disable-dependency-tracking",
"--with-proj=#{Formula["proj"].opt_prefix}",
"--with-boost=#{Formula["boost"].opt_prefix}",
"--with-zlib=/usr",
"--with-bzip2=/usr",
# Related to the patch, remove this line when upgrading
"--without-lockfree",
]
puts args
if build.with? "protobuf-c"
args << "--with-protobuf-c=#{Formula["protobuf-c"].opt_prefix}"
end
system "./autogen.sh"
system "./configure", *args
system "make"
system "make", "install"
end
test do
assert_match "version #{version}",
shell_output("#{bin}/osm2pgsql -h 2>&1", 1)
end
end