From 0147be80be3a39811101a9bd757cf97ae63e32e1 Mon Sep 17 00:00:00 2001 From: Aviv Rosenberg Date: Sun, 22 Dec 2013 21:16:00 +0200 Subject: osm2pgrouting 2.0.0 This is a tool which uploads OpenStreetMap data into a PostgreSQL database, while creating appropriate schema and tables suitable for use with pgrouting. Closes #25406. Signed-off-by: Adam Vandenberg --- Library/Formula/osm2pgrouting.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Library/Formula/osm2pgrouting.rb (limited to 'Library/Formula') diff --git a/Library/Formula/osm2pgrouting.rb b/Library/Formula/osm2pgrouting.rb new file mode 100644 index 000000000..1b0eebf9e --- /dev/null +++ b/Library/Formula/osm2pgrouting.rb @@ -0,0 +1,26 @@ +require 'formula' + +class Osm2pgrouting < Formula + homepage 'http://pgrouting.org/docs/tools/osm2pgrouting.html' + url 'https://github.com/pgRouting/osm2pgrouting/archive/v2.0.0.tar.gz' + sha1 '2d100ac9914919993a7c341e2395b8bafdfe3759' + head 'https://github.com/pgRouting/osm2pgrouting.git', :branch => 'master' + + 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 -- cgit v1.2.3