homebrew-core/Formula/wtf.rb
Chongyu Zhu 172903ed7b
wtf 20180925
Closes #32484.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2018-09-27 19:52:56 +08:00

20 lines
585 B
Ruby

class Wtf < Formula
desc "Translate common Internet acronyms"
homepage "http://cvsweb.netbsd.org/bsdweb.cgi/src/games/wtf/"
url "https://downloads.sourceforge.net/project/bsdwtf/wtf-20180925.tar.gz"
sha256 "87c695c166de5d47bd41661fbd3487e313bee5811a7d5697e05d35fcd2af9eac"
bottle :unneeded
def install
inreplace %w[wtf wtf.6], "/usr/share", share
bin.install "wtf"
man6.install "wtf.6"
(share+"misc").install %w[acronyms acronyms.comp]
(share+"misc").install "acronyms-o.real" => "acronyms-o"
end
test do
system bin/"wtf", "needle"
end
end