blob: 68e5f7cf8a9f826fe4897372b19db126537f1aac (
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
|