homebrew-core/Formula/plzip.rb
2015-07-24 09:15:29 +01:00

30 lines
1,003 B
Ruby

class Plzip < Formula
desc "Data compressor"
homepage "http://www.nongnu.org/lzip/plzip.html"
url "http://download.savannah.gnu.org/releases/lzip/plzip/plzip-1.4.tar.gz"
sha256 "2a152ee429495cb96c22a51b618d1d19882db3e24aff79329d9c755a2a2f67bb"
bottle do
cellar :any
sha256 "d6034ff78f2a1e85f7794450bdd06bc95b1a07e30ee99c1227bf642d5be09ad4" => :yosemite
sha256 "8cd3d1ac2c5b8c04a172188efdbc89dd1a7cfe936057d047d728484691e67adb" => :mavericks
sha256 "7e8f6bbcb52876b808fc247a46e9f189b1e8a04f829717dc27979d1393f7a15a" => :mountain_lion
end
depends_on "lzlib"
def install
system "./configure", "--prefix=#{prefix}",
"CXX=#{ENV.cxx}",
"CXXFLAGS=#{ENV.cflags}"
system "make"
system "make", "check"
system "make", "-j1", "install"
end
test do
text = "Hello Homebrew!"
compressed = pipe_output("#{bin}/plzip -c", text)
assert_equal text, pipe_output("#{bin}/plzip -d", compressed)
end
end