456ff4f4b6
icbirc is a proxy that allows to connect an IRC client to an ICB server. The proxy accepts client connections, connects to the server, and for- wards data between those two connections. Closes Homebrew/homebrew#25838. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
326 B
Ruby
15 lines
326 B
Ruby
require "formula"
|
|
|
|
class Icbirc < Formula
|
|
homepage "http://www.benzedrine.cx/icbirc.html"
|
|
url "http://www.benzedrine.cx/icbirc-1.8.tar.gz"
|
|
sha1 "99ff8674b189fdf8a86b6acd2bc19418b888c38b"
|
|
|
|
depends_on "bsdmake" => :build
|
|
|
|
def install
|
|
system "bsdmake"
|
|
bin.install "icbirc"
|
|
man8.install "icbirc.8"
|
|
end
|
|
end
|