blob: 7cc11cff4254d4bcb2b614b183500f54c675b1d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
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
  |