homebrew-core/Formula/colloquypush.rb
Jack Nagel d14b74bf3e colloquypush: use a stable tarball
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-13 16:06:59 -05:00

18 lines
461 B
Ruby

require 'formula'
class Colloquypush < Formula
homepage 'https://github.com/wired/colloquypush'
url 'https://github.com/wired/colloquypush/tarball/colloquy-znc-1.1'
md5 '6f696b3c36bcbc05975181e129ea8599'
head 'https://github.com/wired/colloquypush.git'
depends_on 'znc'
def install
cd "znc" do
system "znc-buildmod", "colloquy.cpp"
system "install", "-m", "0755", "colloquy.so", %x[znc-config --moddir].strip()
end
end
end