blob: 6176d3874c1bc340b3e4335609f2fcc46810bfae (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | class Paq8px < Formula
  homepage "http://dhost.info/paq8/"
  url "http://dhost.info/paq8/paq8px_v69.zip"
  sha1 "77667a3c61b858d71897f47fc4c4d8eabf3d715c"
  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
 |