5373e3bb9c
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
337 B
Ruby
14 lines
337 B
Ruby
require 'formula'
|
|
|
|
class Colloquypush <Formula
|
|
head 'git://github.com/wired/colloquypush.git'
|
|
homepage 'http://github.com/wired/colloquypush'
|
|
|
|
depends_on 'znc'
|
|
|
|
def install
|
|
Dir.chdir("znc")
|
|
system "znc-buildmod", "colloquy.cpp"
|
|
system "install", "-m", "0755", "colloquy.so", %x[znc-config --moddir].strip()
|
|
end
|
|
end
|