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

class Timelimit < Formula
  homepage 'http://devel.ringlet.net/sysutils/timelimit/'
  url 'http://devel.ringlet.net/sysutils/timelimit/timelimit-1.8.tar.gz'
  sha1 '0bc20606db0f587f3927f747680c9522b2d4c5af'

  def install
    system  "make", "LOCALBASE=#{prefix}",
                    "MANDIR=#{man}/man",
                    "all"
    bin.install "timelimit"
    man1.install "timelimit.1.gz"
  end
end