aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tinc.rb
blob: e051bb69e830e4e8fb3a993022ea2ec5405c3d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Tinc < Formula
  homepage 'http://www.tinc-vpn.org'
  url 'http://www.tinc-vpn.org/packages/tinc-1.0.23.tar.gz'
  sha1 '840dca0cc1d28a3e408f463693ef766c72d8bc90'

  depends_on 'lzo'

  def install
    system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
    system "make"
    system "make install"
  end
end