blob: a6124c1f24ea826a029fc83bd511937eedabf496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
  |