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

class Ngircd < Formula
  homepage 'http://ngircd.barton.de'

  url 'ftp://ftp.berlios.de/pub/ngircd/ngircd-19.1.tar.gz'
  mirror 'http://ngircd.barton.de/pub/ngircd/ngircd-19.1.tar.gz'
  md5 'baa653d4877ea5b24af64859115e00f8'

  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