timelimit 1.8

Closes Homebrew/homebrew#15167.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Guohui Xiao 2012-09-27 23:32:18 +02:00 committed by Adam Vandenberg
parent ef54969819
commit e1b744794b
1 changed files with 15 additions and 0 deletions

15
Formula/timelimit.rb Normal file
View File

@ -0,0 +1,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