466f3b0665
We have an upstream signed binary available! Big big love to Mattias for this. This PR converts all the existing tuntap dependencies into binary-friendly tuntap dependencies, and adds a tuntap dependency to requirements to look for the kexts. Closes Homebrew/homebrew#33894. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
24 lines
567 B
Ruby
24 lines
567 B
Ruby
require "formula"
|
|
|
|
class Iodine < Formula
|
|
homepage "http://code.kryo.se/iodine/"
|
|
url "http://code.kryo.se/iodine/iodine-0.7.0.tar.gz"
|
|
sha1 "f4c49305b6f46a547b160b3bd8c962942d701a63"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "01e0ab026e082803d4d1f04f90d6afe28b5baeb9" => :mavericks
|
|
sha1 "39e539f323810586316599e296120398afd55431" => :mountain_lion
|
|
sha1 "1afe02179eaa83f66382eaf296023c574e351f79" => :lion
|
|
end
|
|
|
|
depends_on :tuntap
|
|
|
|
def install
|
|
system "make", "install", "prefix=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
system "#{sbin}/iodine", "-v"
|
|
end
|
|
end
|