aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/osm2pgsql.rb
blob: 0db467a3828a3267651ab50c492214455b423548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'formula'

class Osm2pgsql < Formula
  homepage 'http://wiki.openstreetmap.org/wiki/Osm2pgsql'
  url 'https://github.com/openstreetmap/osm2pgsql/archive/0.84.0.tar.gz'
  sha1 '42145c39596580680f120a07a4f30f97a86a3698'

  bottle do
    cellar :any
    sha1 "dc345c1a9879184ad88a193e9a6ebfcf65f3750a" => :mavericks
    sha1 "b4ecf55fdc125fccb7d994004b46938e8636fbcf" => :mountain_lion
    sha1 "e0dd38b56230cfdad09abda16594fe978352b515" => :lion
  end

  depends_on :postgresql
  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on "libtool" => :build
  depends_on "geos"
  depends_on "proj"
  depends_on "protobuf-c" => :optional

  def install
    args = [
      "--with-proj=#{Formula["proj"].opt_prefix}",
      "--with-zlib=/usr",
      "--with-bzip2=/usr"
    ]
    if build.with? "protobuf-c"
      args << "--with-protobuf-c=#{Formula["protobuf-c"].opt_prefix}"
    end
    system "./autogen.sh"
    system "./configure", *args
    system "make"
    bin.install "osm2pgsql"
    (share+'osm2pgsql').install 'default.style'
  end
end