2009-11-13 03:06:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lockrun < Formula
|
2009-11-13 03:06:50 +00:00
|
|
|
homepage 'http://unixwiz.net/tools/lockrun.html'
|
2013-01-29 05:08:23 +00:00
|
|
|
url 'http://unixwiz.net/tools/lockrun.c'
|
2013-07-12 11:11:55 +00:00
|
|
|
version '20130426'
|
|
|
|
sha1 '6b1e20f5413f02c93ff24e7f3eab28d01f66a1b6'
|
2009-11-13 03:06:50 +00:00
|
|
|
|
|
|
|
def install
|
2010-08-10 15:05:31 +00:00
|
|
|
system "#{ENV.cc} #{ENV.cflags} lockrun.c -o lockrun"
|
2009-11-13 03:06:50 +00:00
|
|
|
bin.install "lockrun"
|
|
|
|
end
|
|
|
|
end
|