homebrew-core/Formula/i2p.rb
Caleb Xu bc1d62776a i2p 0.9.42
Closes #43662.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-08-30 18:48:11 +02:00

26 lines
883 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.42/i2pinstall_0.9.42.jar"
mirror "https://launchpad.net/i2p/trunk/0.9.42/+download/i2pinstall_0.9.42.jar"
sha256 "cb192e48c5f06839c99b71861364f3a9117b6b24f78f7f7c25d6716507c81bdf"
bottle :unneeded
depends_on :java => "1.7+"
def install
(buildpath/"path.conf").write "INSTALL_PATH=#{libexec}"
system "java", "-jar", "i2pinstall_#{version}.jar", "-options", "path.conf"
wrapper_name = "i2psvc-macosx-universal-64"
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("#{bin}/i2prouter status", 1)
end
end