New formula: ngIRCd 15

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Alexander Barton 2010-01-01 13:44:15 +01:00 committed by Adam Vandenberg
parent 9a02196aa2
commit 8bcc26df85
1 changed files with 17 additions and 0 deletions

17
Formula/ngircd.rb Normal file
View File

@ -0,0 +1,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