homebrew-core/Formula/szip.rb
2015-02-19 16:37:36 +08:00

43 lines
1.2 KiB
Ruby

class Szip < Formula
homepage "http://www.hdfgroup.org/HDF5/release/obtain5.html#extlibs"
url "http://www.hdfgroup.org/ftp/lib-external/szip/2.1/src/szip-2.1.tar.gz"
sha1 "d241c9acc26426a831765d660b683b853b83c131"
bottle do
cellar :any
sha1 "75413c328dc915c2bc638d308fd15a1e93fddd18" => :yosemite
sha1 "71a91cec13090ab85a0b1c7339df98610561562d" => :mavericks
sha1 "37a8018d670680d3002fd68aec8fae0992635911" => :mountain_lion
end
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include "szlib.h"
int main()
{
sz_stream c_stream;
c_stream.bits_per_pixel = 8;
c_stream.pixels_per_block = 8;
c_stream.pixels_per_scanline = 16;
assert(SZ_CompressInit(&c_stream) == SZ_OK);
assert(SZ_CompressEnd(&c_stream) == SZ_OK);
return 0;
}
EOS
system ENV.cc, "-lsz", "test.c", "-o", "test"
system "./test"
end
end