osm2pgsql formula

A utility program that converts OpenStreetMap (.OSM) data into a format that can be loaded into PostgreSQL.
master
Tom Taylor 2009-10-03 14:19:16 +01:00 committed by Max Howell
parent caf60a8f4f
commit 339d725628
1 changed files with 17 additions and 0 deletions

17
Formula/osm2pgsql.rb Normal file
View File

@ -0,0 +1,17 @@
require 'brewkit'
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