blob: 4aa4990fe41d481bea880e8e66b3702b7d417a07 (
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-15.tar.gz'
md5 'c183a85eba6fe51255983848f099c8ae'
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
|