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

class Authexec < Formula
  homepage 'https://github.com/tcurdt/authexec'
  url 'https://github.com/tcurdt/authexec/tarball/1.0'
  head 'https://github.com/tcurdt/authexec.git'
  md5 '3ee6c6939be0372b3c1fdaa73d762387'

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