homebrew-core/Formula/laszip.rb

19 lines
458 B
Ruby
Raw Normal View History

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
2013-09-19 14:57:54 +00:00
system "#{bin}/laszippertest"
end
end