class Openvpn < Formula desc "SSL VPN implementing OSI layer 2 or 3 secure network extension" homepage "https://openvpn.net/index.php/download/community-downloads.html" url "https://swupdate.openvpn.org/community/releases/openvpn-2.3.14.tar.xz" mirror "https://build.openvpn.net/downloads/releases/openvpn-2.3.14.tar.xz" sha256 "f3a0d0eaf8d544409f76a9f2a238a0cd3dde9e1a9c1f98ac732a8b572bcdee98" bottle do cellar :any sha256 "2e994b1b98169ed00a4b4ad9943c7fc5fa193d2b3d5b68479695ebce3835f25e" => :sierra sha256 "c6ce9eb22bccd442b666ed8493de32396f6b01e64cba4817701c2f1cba21ff10" => :el_capitan sha256 "073d92bdf706f05014462b55d5294bc25dc3cfb2d31b07b3c657f8141bc85bf6" => :yosemite end # Requires tuntap for < 10.10 depends_on :macos => :yosemite depends_on "lzo" depends_on "openssl" depends_on "pkcs11-helper" => [:optional, "without-threading", "without-slotevent"] if build.with? "pkcs11-helper" depends_on "pkg-config" => :build depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end def install args = %W[ --disable-debug --disable-dependency-tracking --disable-silent-rules --with-crypto-library=openssl --prefix=#{prefix} --enable-password-save ] args << "--enable-pkcs11" if build.with? "pkcs11-helper" system "./configure", *args system "make", "install" inreplace "sample/sample-config-files/openvpn-startup.sh", "/etc/openvpn", "#{etc}/openvpn" (doc/"samples").install Dir["sample/sample-*"] (etc/"openvpn").install doc/"samples/sample-config-files/client.conf" (etc/"openvpn").install doc/"samples/sample-config-files/server.conf" # We don't use PolarSSL, so this file is unnecessary & somewhat confusing. rm doc/"README.polarssl" end def post_install (var/"run/openvpn").mkpath end plist_options :startup => true def plist; <<-EOS.undent Label #{plist_name} ProgramArguments #{opt_sbin}/openvpn --config #{etc}/openvpn/openvpn.conf OnDemand RunAtLoad TimeOut 90 WatchPaths #{etc}/openvpn WorkingDirectory #{etc}/openvpn EOS end test do system sbin/"openvpn", "--show-ciphers" end end