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

class Net6 < Formula
  homepage 'http://gobby.0x539.de'
  url 'http://releases.0x539.de/net6/net6-1.3.14.tar.gz'
  sha1 '7523a604e6b7f723cdd7f457f8f7c8c9cf48dae1'
  revision 1

  depends_on 'pkg-config' => :build
  depends_on 'gnutls'
  depends_on 'libsigc++'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make", "install"
  end
end