Formula for tinc (1.0.13)

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
codec 2010-07-24 05:04:07 +02:00 committed by Adam Vandenberg
parent 6e8d9364ee
commit 2dc06f0ee8

14
Formula/tinc.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class Tinc <Formula
url 'http://www.tinc-vpn.org/packages/tinc-1.0.13.tar.gz'
homepage 'http://www.tinc-vpn.org'
md5 '86263994d38c750431efd17e9a91a248'
depends_on 'lzo'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end