class DnscryptProxy < Formula desc "Secure communications between a client and a DNS resolver" homepage "https://github.com/jedisct1/dnscrypt-proxy" url "https://github.com/jedisct1/dnscrypt-proxy/archive/2.0.16.tar.gz" sha256 "7ff4cb7890fdf6b1b54ec4a9ef9f8ba5e71bcaff8522f324ef6ecc739ce95e5e" head "https://github.com/jedisct1/dnscrypt-proxy.git" bottle do cellar :any_skip_relocation sha256 "f0c6b5578cb6e834c8b34ccb31c465577432861810b8e9f03e7104a38b6e58b5" => :mojave sha256 "7a7fd188f9d779a89eedacba76e5d90bd8917eb893d65b68b2f7428c1223e851" => :high_sierra sha256 "5c53b259fbfe284fc9967d8626bafccf75d98a74cc4c882c8fb42bc690d39277" => :sierra sha256 "95652dfcb23f6555814267e296c338c1f3c5ed456cacad0d2c161eba2f7faf66" => :el_capitan end depends_on "go" => :build def install ENV["GOPATH"] = buildpath prefix.install_metafiles dir = buildpath/"src/github.com/jedisct1/dnscrypt-proxy" dir.install buildpath.children cd dir/"dnscrypt-proxy" do system "go", "build", "-ldflags", "-X main.version=#{version}", "-o", sbin/"dnscrypt-proxy" pkgshare.install Dir["example*"] etc.install pkgshare/"example-dnscrypt-proxy.toml" => "dnscrypt-proxy.toml" end end def caveats; <<~EOS After starting dnscrypt-proxy, you will need to point your local DNS server to 127.0.0.1. You can do this by going to System Preferences > "Network" and clicking the "Advanced..." button for your interface. You will see a "DNS" tab where you can click "+" and enter 127.0.0.1 in the "DNS Servers" section. By default, dnscrypt-proxy runs on localhost (127.0.0.1), port 53, balancing traffic across a set of resolvers. If you would like to change these settings, you will have to edit the configuration file: #{etc}/dnscrypt-proxy.toml To check that dnscrypt-proxy is working correctly, open Terminal and enter the following command. Replace en1 with whatever network interface you're using: sudo tcpdump -i en1 -vvv 'port 443' You should see a line in the result that looks like this: resolver.dnscrypt.info EOS end plist_options :startup => true def plist; <<~EOS Label #{plist_name} KeepAlive RunAtLoad ProgramArguments #{opt_sbin}/dnscrypt-proxy -config #{etc}/dnscrypt-proxy.toml UserName root StandardErrorPath /dev/null StandardOutPath /dev/null EOS end test do config = "-config #{etc}/dnscrypt-proxy.toml" output = shell_output("#{sbin}/dnscrypt-proxy #{config} -list 2>&1") assert_match "public-resolvers.md] loaded", output end end