osm-pbf 1.2.1

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Christoph Bünte 2012-04-26 22:52:33 +02:00 committed by Adam Vandenberg
parent f819d3fe64
commit 1b4de2d5b0
1 changed files with 17 additions and 0 deletions

17
Formula/osm-pbf.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class OsmPbf < Formula
homepage 'http://wiki.openstreetmap.org/wiki/PBF_Format'
url 'https://github.com/scrosby/OSM-binary/tarball/v1.2.1'
md5 '7eb8e6c30c261d2fa338048e2a356bad'
depends_on 'protobuf'
def install
cd 'src' do
system "make"
lib.install 'libosmpbf.a'
end
include.install Dir['include/*']
end
end