paq8px: boneyard

Fixes Homebrew/homebrew#44061.
Closes Homebrew/homebrew#44501.
Closes Homebrew/homebrew#45108.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
This commit is contained in:
Alex Dunn 2015-10-18 09:09:42 -07:00
parent 29f9833c3c
commit aa019ada88

View file

@ -1,22 +0,0 @@
class Paq8px < Formula
desc "Data compression archivers"
homepage "http://dhost.info/paq8/"
url "http://dhost.info/paq8/paq8px_v69.zip"
sha256 "d39440e57a37a2be1d1bbd2ba9a5b747334238cd8d3538e709233010a5129f77"
def install
system ENV.cxx, "paq8px_v69.cpp", "-DUNIX", "-DNOASM", "-o", "paq8px"
bin.install "paq8px"
end
test do
touch "test.txt"
system "echo", "Foobarbaz", ">", "test.txt"
system "yes | #{bin}/paq8px test.txt"
system "yes | #{bin}/paq8px test.txt.paq8px"
rm "test.txt"
system "yes | #{bin}/paq8px test.txt.paq8px"
rm "test.txt"
rm "test.txt.paq8px"
end
end