95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
19 lines
664 B
Ruby
19 lines
664 B
Ruby
class Spatialindex < Formula
|
|
desc "General framework for developing spatial indices"
|
|
homepage "https://libspatialindex.github.io"
|
|
url "http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.5.tar.gz"
|
|
sha256 "7caa46a2cb9b40960f7bc82c3de60fa14f8f3e000b02561b36cbf2cfe6a9bfef"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "ed7c92a7da78e4e7e5294ea52cd05c344094af98" => :yosemite
|
|
sha1 "07e4fe6747d4db327fadc2e3e4f12a975ff4aaba" => :mavericks
|
|
sha1 "2122a70a3dd9d966d8fdc7b9e0e285515356dd98" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|