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

class Ngircd < Formula
  homepage 'http://ngircd.barton.de'
  url 'ftp://ftp.berlios.de/pub/ngircd/ngircd-19.2.tar.gz'
  mirror 'http://ngircd.barton.de/pub/ngircd/ngircd-19.2.tar.gz'
  sha1 'c97e0409778ef1a4431bec1917b36918171047bc'

  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