class I2pd < Formula desc "Full-featured C++ implementation of I2P client" homepage "https://i2pd.website/" url "https://github.com/PurpleI2P/i2pd/archive/2.22.0.tar.gz" sha256 "6547d7a560482c5eda9106ae19267bc8afbb6af48fed3bebf423ade28103e173" bottle do sha256 "013c0471942d4f7220403eb98eb25a7a10d45f0ee7d69a5eb5068eae3032f921" => :mojave sha256 "481b33ba39601164f274efbe6b3304f158a2add4d55aa50686c784dce4281f57" => :high_sierra sha256 "c7ccfb8466974bb2b5d5497bdfa68029088cca29212de96cd90569d08d396801" => :sierra end depends_on "boost" depends_on "miniupnpc" depends_on "openssl@1.1" needs :cxx11 def install system "make", "install", "DEBUG=no", "HOMEBREW=1", "USE_UPNP=yes", "USE_AENSI=no", "USE_AVX=no", "PREFIX=#{prefix}" # preinstall to prevent overwriting changed by user configs confdir = etc/"i2pd" rm_rf prefix/"etc" confdir.install doc/"i2pd.conf", doc/"subscriptions.txt", doc/"tunnels.conf" end def post_install # i2pd uses datadir from variable below. If that path not exists, create that directory and create symlinks to certificates and configs. # Certificates can be updated between releases, so we must re-create symlinks to latest version of it on upgrade. datadir = var/"lib/i2pd" if datadir.exist? rm datadir/"certificates" datadir.install_symlink pkgshare/"certificates" else datadir.dirname.mkpath datadir.install_symlink pkgshare/"certificates", etc/"i2pd/i2pd.conf", etc/"i2pd/subscriptions.txt", etc/"i2pd/tunnels.conf" end (var/"log/i2pd").mkpath end plist_options :manual => "i2pd" def plist; <<~EOS Label #{plist_name} RunAtLoad ProgramArguments #{opt_bin}/i2pd --datadir=#{var}/lib/i2pd --conf=#{etc}/i2pd/i2pd.conf --tunconf=#{etc}/i2pd/tunnels.conf --log=file --logfile=#{var}/log/i2pd/i2pd.log --pidfile=#{var}/run/i2pd.pid EOS end test do pid = fork do exec "#{bin}/i2pd", "--datadir=#{testpath}", "--daemon" end sleep 5 Process.kill "TERM", pid assert_predicate testpath/"router.keys", :exist?, "Failed to start i2pd" end end