homebrew-core/Formula/wtf.rb
Rui Chen 426da89fc7 wtf 20191002
Closes #44857.

Signed-off-by: Rui Chen <rchen@meetup.com>
2019-10-03 13:21:53 -04: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-20191002.tar.gz"
sha256 "9923b4214e52b93ca26cc3f078fb0fdcaab2ef838fac52702c766696ce7ccd40"
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