lockrun formula; Run cron job with overrun protection

master
Jordan Bracco 2009-11-13 04:06:50 +01:00 committed by Max Howell
parent d0f3ae2056
commit ddff4910f4
1 changed files with 13 additions and 0 deletions

13
Formula/lockrun.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Lockrun <Formula
url 'http://unixwiz.net/tools/lockrun.c'
homepage 'http://unixwiz.net/tools/lockrun.html'
md5 '094b6c41be239de2ded94b9b7f590004'
version '20090625'
def install
system "#{ENV.cc} #{ENV['CFLAGS']} lockrun.c -o lockrun"
bin.install "lockrun"
end
end