95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
25 lines
904 B
Ruby
25 lines
904 B
Ruby
class Osm2pgrouting < Formula
|
|
desc "Import OSM data into pgRouting database"
|
|
homepage "http://pgrouting.org/docs/tools/osm2pgrouting.html"
|
|
url "https://github.com/pgRouting/osm2pgrouting/archive/v2.0.0.tar.gz"
|
|
sha256 "0438624f02b58b14388962d6b538187f16993a5e1e9766acf8099dc0255dfb34"
|
|
head "https://github.com/pgRouting/osm2pgrouting.git"
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "boost"
|
|
depends_on :postgresql
|
|
|
|
def install
|
|
# Fixes the default hard-coded /usr/share which the program would be installed in.
|
|
# Instead we supply relative paths, and run cmake with flag -DCMAKE_INSTALL_PREFIX=#{prefix} so that
|
|
# we get a proper path inside prefix.
|
|
inreplace "CMakeLists.txt" do |s|
|
|
s.gsub! "/usr/share/osm2pgrouting", "."
|
|
s.gsub! "/usr/share/bin", "bin"
|
|
end
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|