blob: 9434f7e5e08db1994410daa1c8848f4ff8d2d61d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
require 'date'
class Osm2pgsql <Formula
  head 'http://svn.openstreetmap.org/applications/utils/export/osm2pgsql/'
  homepage 'http://wiki.openstreetmap.org/wiki/Osm2pgsql'
  def install
    system "make"
    bin.install "osm2pgsql"
  end
  
  def download_strategy
    SubversionDownloadStrategy
  end
  
end
  |