blob: 15d603e8fc37cc9982f0f74278ad06a1afbd9e92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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
|