0ca1494eba
Closes #6884. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
25 lines
825 B
Ruby
25 lines
825 B
Ruby
class I2p < Formula
|
|
desc "Anonymous overlay network - a network within a network"
|
|
homepage "https://geti2p.net"
|
|
url "https://download.i2p2.de/releases/0.9.27/i2pinstall_0.9.27.jar"
|
|
sha256 "5e9ae0b1e8fb5707ae6903e09aa1110b6d98742b5c2952f24667133e563843f0"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.6+"
|
|
|
|
def install
|
|
(buildpath/"path.conf").write "INSTALL_PATH=#{libexec}"
|
|
|
|
system "java", "-jar", "i2pinstall_#{version}.jar", "-options", "path.conf"
|
|
|
|
wrapper_name = "i2psvc-macosx-universal-#{MacOS.prefer_64_bit? ? 64 : 32}"
|
|
libexec.install_symlink libexec/wrapper_name => "i2psvc"
|
|
bin.write_exec_script Dir["#{libexec}/{eepget,i2prouter}"]
|
|
man1.install Dir["#{libexec}/man/*"]
|
|
end
|
|
|
|
test do
|
|
assert_match "I2P Service is not running.", shell_output("i2prouter status", 1)
|
|
end
|
|
end
|