homebrew-core/Formula/csup.rb
Manpreet Singh 1006cb2928 csup 20120305
* also moved head to bitbuket

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-21 07:07:17 -07:00

18 lines
381 B
Ruby

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