homebrew-core/Formula/iodine.rb
Dominyk Tiller 7099f54ef7 Add unsigned kext requirement.
Creates a new requirement that dictates packages are unable to install due to requiring a signed kext to function.

Closes Homebrew/homebrew#33404.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-23 08:57:12 +01:00

24 lines
568 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