homebrew-core/Formula/tinc.rb
Stian Eikeland 16033e5f5e tinc 1.0.17
update tinc to v1.0.17

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-16 07:14:44 -07:00

15 lines
346 B
Ruby

require 'formula'
class Tinc < Formula
url 'http://www.tinc-vpn.org/packages/tinc-1.0.17.tar.gz'
homepage 'http://www.tinc-vpn.org'
sha1 '3e07c53978868766bf805397efe5842e686464d8'
depends_on 'lzo'
def install
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make"
system "make install"
end
end