aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tinc.rb
blob: 9dca0b9b742ae5dc62d445fd60ad3c4e50b542e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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