aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/authexec.rb
blob: efdfc76d45f3abea63da7c01eea12194a0164690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Authexec <Formula
  url 'http://vafer.org/pub/cocoa/authexec.zip'
  homepage 'http://vafer.org/blog/20060211170210'
  md5 '0644931a28960a59b7720eb37d035c2e'
  version '2010-01-28'

  def install
    inreplace "Makefile", "gcc", "$(CC)"
    system 'make all'
    bin.install 'authexec'
  end
end