homebrew-core/Formula/wtf.rb
Chongyu Zhu 72fe66c167
wtf 20190323
Closes #38264.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-03-26 00:03:44 +08: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-20190323.tar.gz"
sha256 "4a62dd18abc13d79528047a4de2bd179d57551b6e0ed911adea44b9e5828fe6b"
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