14 lines
341 B
Ruby
14 lines
341 B
Ruby
require 'formula'
|
|
|
|
class Colloquypush < Formula
|
|
head 'https://github.com/wired/colloquypush.git'
|
|
homepage 'https://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
|