blob: f02a65ba303e068027af3a6e3846dc6655ddc2cb (
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'
sha1 'caef119168723f1c1d6d32c0f2a1ac392df87afe'
head 'https://bitbucket.org/mux/csup', :using => :hg
def install
system "make"
bin.install "csup"
man1.install "csup.1"
end
test do
system "#{bin}/csup", "-v"
end
end
|