New Formula: ReadOSM

ReadOSM is a small library for reading Open Street Map data dumps. This library
is a new pre-requisite of the Spatialite Tools.
This commit is contained in:
Charlie Sharpsteen 2012-05-07 10:56:38 -07:00
parent 5972893fdb
commit b32a978f0e

13
Formula/readosm.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Readosm < Formula
homepage 'https://www.gaia-gis.it/fossil/readosm/index'
url 'http://www.gaia-gis.it/gaia-sins/readosm-sources/readosm-1.0.0.tar.gz'
md5 'ed50a748d430612ecbead6ad3d271410'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end