2010-01-14 20:59:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Colloquypush < Formula
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/wired/colloquypush.git'
|
2010-11-10 18:16:28 +00:00
|
|
|
homepage 'https://github.com/wired/colloquypush'
|
2010-01-14 20:59:07 +00:00
|
|
|
|
|
|
|
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
|