aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ngircd.rb
blob: c3ba900cbf4d30a1183d0259746d3ef4b8be6c70 (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://ngircd.barton.de/pub/ngircd/ngircd-16.tar.gz'
  md5 '8c9e0382cd982b0ca77c05528ebe28eb'
  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