aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/csup.rb
blob: 9c3cbdaeb3b03726090339ad6240723c5e9441a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Csup < Formula
  homepage 'https://bitbucket.org/mux/csup'
  url 'https://bitbucket.org/mux/csup/get/REL_20120305.tar.gz'
  md5 '24be262075ce8f268caf86ffe20fe268'
  head 'https://bitbucket.org/mux/csup', :using => :hg

  def install
    system "make"
    bin.install "csup"
    man1.install "csup.1"
  end

  def test
    system "#{bin}/csup", "-v"
  end
end