Created
April 26, 2012 07:49
-
-
Save christoph-buente/2497295 to your computer and use it in GitHub Desktop.
Osmium Homebrew formula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Osmium < Formula | |
head 'https://github.com/joto/osmium.git' | |
homepage 'http://wiki.openstreetmap.org/wiki/Osmium' | |
depends_on 'boost' | |
depends_on 'lzlib' | |
depends_on 'shapelib' | |
depends_on 'expat' | |
depends_on 'geos' | |
depends_on 'protobuf' | |
depends_on 'v8' | |
depends_on 'icu4c' | |
depends_on 'google-sparsehash' | |
depends_on 'osm-pbf' | |
skip_clean :all | |
def install | |
cd 'osmjs' do | |
system "make" | |
bin.install 'osmjs' | |
end | |
system "make doc" | |
include.install Dir['include/*'] | |
doc.install Dir['doc/*'] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment