blob: d79059223204e397b609f540c82e7f7b7ce358d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Colloquypush < Formula
  head 'https://github.com/wired/colloquypush.git'
  homepage 'https://github.com/wired/colloquypush'
  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
  |