aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/osm-pbf.rb
blob: e8deb46c87b6efcdf9e09c93bbb950aaa4ee5935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
  sha1 'c12e6649e8aa00a460f54db7f84e723503367fc2'

  depends_on 'protobuf'

  def install
    cd 'src' do
      system "make"
      lib.install 'libosmpbf.a'
    end
    include.install Dir['include/*']
  end
end