3ad9a0896f
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>
14 lines
327 B
Ruby
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
|