2010-01-14 20:59:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Colloquypush < Formula
|
2010-11-10 18:16:28 +00:00
|
|
|
homepage 'https://github.com/wired/colloquypush'
|
2012-03-13 21:06:59 +00:00
|
|
|
url 'https://github.com/wired/colloquypush/tarball/colloquy-znc-1.1'
|
|
|
|
md5 '6f696b3c36bcbc05975181e129ea8599'
|
|
|
|
|
|
|
|
head 'https://github.com/wired/colloquypush.git'
|
2010-01-14 20:59:07 +00:00
|
|
|
|
|
|
|
depends_on 'znc'
|
|
|
|
|
|
|
|
def install
|
2012-02-21 06:04:21 +00:00
|
|
|
cd "znc" do
|
|
|
|
system "znc-buildmod", "colloquy.cpp"
|
|
|
|
system "install", "-m", "0755", "colloquy.so", %x[znc-config --moddir].strip()
|
|
|
|
end
|
2010-01-14 20:59:07 +00:00
|
|
|
end
|
|
|
|
end
|