homebrew-core/Formula/ngircd.rb
Alexander Barton 04e6204fee ngIRCd 21
Closes Homebrew/homebrew#24679.

Signed-off-by: Alexander Barton <alex@barton.de>
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-11-27 19:29:15 -06:00

19 lines
605 B
Ruby

require 'formula'
class Ngircd < Formula
homepage 'http://ngircd.barton.de'
url 'ftp://ftp.berlios.de/pub/ngircd/ngircd-21.tar.gz'
mirror 'http://ngircd.barton.de/pub/ngircd/ngircd-21.tar.gz'
sha256 '0edbd41304186e43f9d907a7017b40520cc90c2ce29b1339bdcd7622fffe19a0'
depends_on 'libident'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-ident",
"--with-openssl",
"--enable-ipv6"
system "make install"
end
end