homebrew-core/Formula/authexec.rb

12 lines
214 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Authexec < Formula
2011-09-02 22:13:12 +00:00
head 'https://github.com/tcurdt/authexec.git'
homepage 'https://github.com/tcurdt/authexec'
def install
system 'make all'
bin.install 'authexec'
end
end