homebrew-core/Formula/laszip.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

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