95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
18 lines
458 B
Ruby
18 lines
458 B
Ruby
class Laszip < Formula
|
|
desc "Lossless LiDAR compression"
|
|
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"
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/laszippertest"
|
|
end
|
|
end
|