blob: 8b17689e5807b817c8ac561ad7ea9d81f499c844 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | class Wtf < Formula
  homepage "http://cvsweb.netbsd.org/bsdweb.cgi/src/games/wtf/"
  url "https://downloads.sourceforge.net/project/bsdwtf/wtf-20141212.tar.gz"
  sha256 "31ee95558aee74f76d9e531fb2489765eb51c963b7b514cc07f8b407baf7f2a2"
  def install
    inreplace %w[wtf wtf.6], "/usr/share", share
    bin.install "wtf"
    man6.install "wtf.6"
    (share+"misc").install %w[acronyms acronyms.comp]
  end
  test do
    system bin/"wtf", "needle"
  end
end
 |