homebrew-core/Formula/osm-pbf.rb
Christoph Bünte 1b4de2d5b0 osm-pbf 1.2.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-06-06 22:28:28 -07:00

17 lines
366 B
Ruby

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