94 lines
2.8 KiB
Ruby
94 lines
2.8 KiB
Ruby
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.4.0.tar.xz"
|
|
mirror "https://build.openvpn.net/downloads/releases/openvpn-2.4.0.tar.xz"
|
|
sha256 "6f23ba49a1dbeb658f49c7ae17d9ea979de6d92c7357de3d55cd4525e1b2f87e"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "a410e3af369a2654cda6b1f05db43282656d3907ea9efca32561aaeccf88d291" => :sierra
|
|
sha256 "52815c93bf913bc99f2ee4546f3d992e296eaab7d5da9b269b02cceb69c71434" => :el_capitan
|
|
sha256 "067fcd6d7917ea37434d901e54dd9edaf9beb41a97444d9dd5d80ddd9eb161ac" => :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
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_sbin}/openvpn</string>
|
|
<string>--config</string>
|
|
<string>#{etc}/openvpn/openvpn.conf</string>
|
|
</array>
|
|
<key>OnDemand</key>
|
|
<false/>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>TimeOut</key>
|
|
<integer>90</integer>
|
|
<key>WatchPaths</key>
|
|
<array>
|
|
<string>#{etc}/openvpn</string>
|
|
</array>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{etc}/openvpn</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system sbin/"openvpn", "--show-ciphers"
|
|
end
|
|
end
|