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