blob: 5cbdd1ea9b4d3764a1d70184dfaeb6e659bed6a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Ircii < Formula
url 'http://ftp.netbsd.org/pub/pkgsrc/distfiles/ircii-20081115.tar.bz2'
homepage 'http://www.eterna.com.au/ircii/'
md5 '128c435fcc0d6ad55d7319058ee578a0'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--with-default-server=irc.freenode.net",
"--enable-ipv6"
system "make install"
end
end
|