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

class Csup < Formula
  url 'http://mu.org/~mux/csup-snap-20060318.tgz'
  homepage 'http://mu.org/~mux/csup.html'
  md5 '9218f06f13ed28d1086eec413a734915'

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

  def test
    system "csup -v"
  end
end