blob: a58e272c745f17564b17641c6e6223c13d8a84cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Pgrouting < Formula
homepage 'http://www.pgrouting.org'
url "https://github.com/pgRouting/pgrouting/archive/v2.0.0.tar.gz"
sha1 "cd2f60dc49df7bc8c789c8e73ecb9759194fab96"
depends_on 'cmake' => :build
depends_on 'boost'
depends_on 'cgal'
depends_on 'postgis'
depends_on 'postgresql'
def install
mkdir 'build' do
system "cmake", "-DWITH_DD=ON", "..", *std_cmake_args
system "make", "install"
end
end
end
|