d23656cb70
Closes #24080. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
20 lines
585 B
Ruby
20 lines
585 B
Ruby
class Wtf < Formula
|
|
desc "Translate common Internet acronyms"
|
|
homepage "http://cvsweb.netbsd.org/bsdweb.cgi/src/games/wtf/"
|
|
url "https://downloads.sourceforge.net/project/bsdwtf/wtf-20180212.tar.gz"
|
|
sha256 "d03759721843be7fba7010782eb27771c10f271d2a54f8984ef95e81639526fd"
|
|
|
|
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
|