homebrew-core/Formula/wtf.rb
Chongyu Zhu 0054a66704 wtf 20190417
Closes #39050.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-04-19 08:28:06 +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-20190417.tar.gz"
sha256 "14ae2e9f29f1e5b96c14ff2aa69d5e48556da547b84178862a92e862dd3eae47"
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