aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ngircd.rb
blob: e3bd96b1517c235cfb6f285bcecd907db889739f (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