homebrew-core/Formula/authexec.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

14 lines
327 B
Ruby

require 'formula'
class Authexec < Formula
homepage 'https://github.com/tcurdt/authexec'
url 'https://github.com/tcurdt/authexec/archive/1.0.tar.gz'
sha1 '73d8fb4202ae99057691788442bb192972ef304c'
head 'https://github.com/tcurdt/authexec.git'
def install
system 'make all'
bin.install 'authexec'
end
end