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

class Ngircd < Formula
  url 'ftp://ftp.berlios.de/pub/ngircd/ngircd-17.1.tar.gz'
  md5 'b4ad0b1f18875ff3f2e92f076e64496b'
  homepage 'http://ngircd.barton.de'

  depends_on 'libident'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--with-ident", "--with-openssl", "--with-tcp-wrappers",
                          "--enable-ipv6"
    system "make install"
  end
end