blob: 91b7960f4af20053c11e6a5347be2c5635fc9ffc (
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/archive/v1.3.3.tar.gz'
  sha1 '639e3eecc00041e6326b69da6c200fabe7ad2895'
  depends_on 'protobuf'
  def install
    cd 'src' do
      system "make"
      lib.install 'libosmpbf.a'
    end
    include.install Dir['include/*']
  end
end
  |