homebrew-core/Formula/osm2pgsql.rb

15 lines
364 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Osm2pgsql < Formula
2010-04-06 19:14:40 +00:00
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"
(share+'osm2pgsql').install 'default.style'
end
end