2010-08-09 20:56:47 +00:00
|
|
|
class Arm < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Terminal status monitor for Tor"
|
2015-10-13 23:34:59 +00:00
|
|
|
homepage "https://www.atagar.com/arm/"
|
2015-10-12 21:38:26 +00:00
|
|
|
url "https://www.atagar.com/arm/resources/static/arm-1.4.5.0.tar.bz2"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "fc0e771585dde3803873b4807578060f0556cf1cac6c38840a714ffada3b28fa"
|
2010-08-09 20:56:47 +00:00
|
|
|
|
2015-10-23 08:28:08 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2010-08-09 20:56:47 +00:00
|
|
|
def install
|
|
|
|
(share+"arm").install Dir["*"]
|
2015-08-03 12:55:31 +00:00
|
|
|
bin.write_exec_script share/"arm/arm"
|
2010-08-09 20:56:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
You'll need to enable the Tor Control Protocol in your torrc.
|
2015-10-13 23:34:59 +00:00
|
|
|
See here for details: https://www.torproject.org/tor-manual.html.en
|
2010-08-09 20:56:47 +00:00
|
|
|
|
|
|
|
To configure Arm, copy the sample configuration from
|
|
|
|
#{share}/arm/armrc.sample
|
2014-09-06 10:00:01 +00:00
|
|
|
to ~/.arm/armrc, adjusting as needed.
|
2010-08-09 20:56:47 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|