blob: 81104a8223b1f5a10fa7ce6006785dbca2d62d19 (
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 '40f1a02df4dd67c5e2d973b669acb45d'
  version '20090625'
  def install
    system "#{ENV.cc} #{ENV.cflags} lockrun.c -o lockrun"
    bin.install "lockrun"
  end
end
 |