homebrew-core/Formula/laszip.rb

20 lines
415 B
Ruby
Raw Normal View History

require 'formula'
class Laszip < Formula
homepage 'http://www.laszip.org/'
2013-09-19 14:56:53 +00:00
url 'https://github.com/LASzip/LASzip/archive/v2.2.0.tar.gz'
sha1 '911881d7698642f6c201a70cab62a55a337b5627'
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