41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
class Osm2pgsql < Formula
|
|
desc "OpenStreetMap data to PostgreSQL converter"
|
|
homepage "https://wiki.openstreetmap.org/wiki/Osm2pgsql"
|
|
url "https://github.com/openstreetmap/osm2pgsql/archive/0.92.1.tar.gz"
|
|
sha256 "0912a344aaa38ed4b78f6dcab1a873975adb434dcc31cdd6fec3ec6a30025390"
|
|
head "https://github.com/openstreetmap/osm2pgsql.git"
|
|
|
|
bottle do
|
|
sha256 "83079b4af4dc2b2e37b9b42ae39d7d29a272e2571c5e9afdbcaf94c6f7fa9c0f" => :sierra
|
|
sha256 "a52cb4295d28d3ecfa71a7dfc23593588611c11fbb94035d791207da09da787d" => :el_capitan
|
|
sha256 "cb4248c8b8ce11c4bd836387a3d48f0e8bd297d609b5f70a8c4581a82d13aba1" => :yosemite
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on :postgresql
|
|
depends_on "boost"
|
|
depends_on "geos"
|
|
depends_on "proj"
|
|
depends_on "lua" => :recommended
|
|
|
|
# Compatibility with GEOS 3.6.1
|
|
# Upstream PR from 27 Oct 2016 "Geos36"
|
|
patch do
|
|
url "https://github.com/openstreetmap/osm2pgsql/pull/636.patch"
|
|
sha256 "54aa12fe5a3ebbc9ecc02b7e5771939b99f6437f5a55b67d8835df6d8d58619a"
|
|
end
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
args << "-DWITH_LUA=OFF" if build.without? "lua"
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/osm2pgsql -h 2>&1")
|
|
end
|
|
end
|