2013-07-03 15:31:43 +00:00
|
|
|
class Laszip < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Lossless LiDAR compression"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://www.laszip.org/"
|
|
|
|
url "https://github.com/LASzip/LASzip/archive/v2.2.0.tar.gz"
|
|
|
|
sha256 "b8e8cc295f764b9d402bc587f3aac67c83ed8b39f1cb686b07c168579c61fbb2"
|
|
|
|
head "https://github.com/LASzip/LASzip.git"
|
2013-07-03 15:31:43 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
depends_on "cmake" => :build
|
2013-07-03 15:31:43 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2013-09-19 14:57:54 +00:00
|
|
|
system "#{bin}/laszippertest"
|
2013-07-03 15:31:43 +00:00
|
|
|
end
|
|
|
|
end
|