homebrew-core/Formula/osm2pgsql.rb
Dane Springmeyer 27f40df496 osm2pgsql no longer needs patch as svn breakage was fixed
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-05 16:44:58 -07:00

13 lines
315 B
Ruby

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