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

class Authexec < Formula
  homepage 'https://github.com/tcurdt/authexec'
  url 'https://github.com/tcurdt/authexec/tarball/1.0'
  sha1 'cae4cbd4c2d3ded8e13b4257d951efd1755ed411'

  head 'https://github.com/tcurdt/authexec.git'

  def install
    system 'make all'
    bin.install 'authexec'
  end
end