homebrew-core/Formula/wtf.rb
Chongyu Zhu 548c0dc8ed
wtf 20190422
Closes #39224.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-04-25 00:04:12 +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-20190422.tar.gz"
sha256 "e0121a28e82ff4eec49143dad5e240f374ca15c7ff790d716f957ce56f297669"
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