libosmium (new formula)
Closes #6611. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
4c143c9e07
commit
b1e86188a2
1 changed files with 56 additions and 0 deletions
56
Formula/libosmium.rb
Normal file
56
Formula/libosmium.rb
Normal file
|
@ -0,0 +1,56 @@
|
|||
class Libosmium < Formula
|
||||
desc "Fast and flexible C++ library for working with OpenStreetMap data."
|
||||
homepage "http://osmcode.org/libosmium/"
|
||||
url "https://github.com/osmcode/libosmium/archive/v2.9.0.tar.gz"
|
||||
sha256 "d4312c0cd9cca41fbf2927aee67cbb95d566540a76bb01fc643e8ba76db13419"
|
||||
|
||||
depends_on "cmake" => :build
|
||||
depends_on "boost" => :build
|
||||
depends_on "google-sparsehash" => :optional
|
||||
depends_on "expat" => :optional
|
||||
depends_on "gdal" => :optional
|
||||
depends_on "proj" => :optional
|
||||
depends_on "doxygen" => :optional
|
||||
|
||||
def install
|
||||
mkdir "build" do
|
||||
system "cmake", *std_cmake_args, "-DINSTALL_GDALCPP=ON", "-DINSTALL_PROTOZERO=ON", "-DINSTALL_UTFCPP=ON", ".."
|
||||
system "make", "install"
|
||||
end
|
||||
end
|
||||
|
||||
test do
|
||||
(testpath/"test.osm").write <<-EOS.undent
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<osm version="0.6" generator="handwritten">
|
||||
<node id="1" lat="0.001" lon="0.001" user="Dummy User" uid="1" version="1" changeset="1" timestamp="2015-11-01T19:00:00Z"></node>
|
||||
<node id="2" lat="0.002" lon="0.002" user="Dummy User" uid="1" version="1" changeset="1" timestamp="2015-11-01T19:00:00Z"></node>
|
||||
<way id="1" user="Dummy User" uid="1" version="1" changeset="1" timestamp="2015-11-01T19:00:00Z">
|
||||
<nd ref="1"/>
|
||||
<nd ref="2"/>
|
||||
<tag k="name" v="line"/>
|
||||
</way>
|
||||
<relation id="1" user="Dummy User" uid="1" version="1" changeset="1" timestamp="2015-11-01T19:00:00Z">
|
||||
<member type="node" ref="1" role=""/>
|
||||
<member type="way" ref="1" role=""/>
|
||||
</relation>
|
||||
</osm>
|
||||
EOS
|
||||
|
||||
(testpath/"test.cpp").write <<-EOS.undent
|
||||
#include <cstdlib>
|
||||
#include <iostream>
|
||||
#include <osmium/io/xml_input.hpp>
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
osmium::io::File input_file{argv[1]};
|
||||
osmium::io::Reader reader{input_file};
|
||||
while (osmium::memory::Buffer buffer = reader.read()) {}
|
||||
reader.close();
|
||||
}
|
||||
EOS
|
||||
|
||||
system ENV.cxx, "-std=c++11", "-stdlib=libc++", "-lexpat", "-o", "libosmium_read", "test.cpp"
|
||||
system "./libosmium_read", "test.osm"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue