homebrew-core/Formula/wtf.rb
Rui Chen 0992f97e88 wtf 20190903
Closes #43848.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-09-04 16:37:34 +02:00

20 lines
575 B
Ruby

class Wtf < Formula
desc "Translate common Internet acronyms"
homepage "https://sourceforge.net/projects/bsdwtf/"
url "https://downloads.sourceforge.net/project/bsdwtf/wtf-20190903.tar.gz"
sha256 "1e2c3cabe8ba2f4d0d4c9b4e1ebfb805ab7456806d3119e5056b2a5bcefaaafe"
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