59ddc5eb16
Closes Homebrew/homebrew#48669. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
23 lines
681 B
Ruby
23 lines
681 B
Ruby
class Arm < Formula
|
|
desc "Terminal status monitor for Tor"
|
|
homepage "https://www.atagar.com/arm/"
|
|
url "https://www.atagar.com/arm/resources/static/arm-1.4.5.0.tar.bz2"
|
|
sha256 "fc0e771585dde3803873b4807578060f0556cf1cac6c38840a714ffada3b28fa"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
pkgshare.install Dir["*"]
|
|
bin.write_exec_script pkgshare/"arm"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
You'll need to enable the Tor Control Protocol in your torrc.
|
|
See here for details: https://www.torproject.org/tor-manual.html.en
|
|
|
|
To configure Arm, copy the sample configuration from
|
|
#{opt_pkgshare}/armrc.sample
|
|
to ~/.arm/armrc, adjusting as needed.
|
|
EOS
|
|
end
|
|
end
|