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-03-01 08:50:34 +00:00
|
|
|
version '20120905'
|
|
|
|
sha1 'dc8442d806608c45bab9d9062e5028b6d8f35c0c'
|
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
|