blob: c85d988a41da40cc4b884853b1d991f0688dd48f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Osm2pgsql <Formula
head 'http://svn.openstreetmap.org/applications/utils/export/osm2pgsql/', :using => :svn
homepage 'http://wiki.openstreetmap.org/wiki/Osm2pgsql'
def install
system "./autogen.sh"
system "./configure"
system "make"
bin.install "osm2pgsql"
end
end
|