43 lines
1.4 KiB
Ruby
43 lines
1.4 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.94.0.tar.gz"
|
|
sha256 "9e67e400deca48185313921431884171fb087dfe9e0d21e31857b8b06f20d317"
|
|
head "https://github.com/openstreetmap/osm2pgsql.git"
|
|
|
|
bottle do
|
|
sha256 "f7e37310ae42ce162957086a29a6145600f83d3f8a57440e554a7071c5afddcb" => :high_sierra
|
|
sha256 "aae7c41eec6da49de00a7b8ab553db9f085b339c6b3052bc2e3ba900c6c76eec" => :sierra
|
|
sha256 "752f72697213b35c18efb0f52226da0d18a3ae856f427f29f7f92928577f2642" => :el_capitan
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on :postgresql
|
|
depends_on "boost"
|
|
depends_on "geos"
|
|
depends_on "proj"
|
|
depends_on "lua" => :recommended
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
|
|
if build.with? "lua"
|
|
# This is essentially a CMake disrespects superenv problem
|
|
# rather than an upstream issue to handle.
|
|
lua_version = Formula["lua"].version.to_s.match(/\d\.\d/)
|
|
inreplace "cmake/FindLua.cmake", "LUA_VERSIONS5 5.3 5.2 5.1 5.0",
|
|
"LUA_VERSIONS5 #{lua_version}"
|
|
else
|
|
args << "-DWITH_LUA=OFF"
|
|
end
|
|
|
|
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
|