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>
13 lines
321 B
Ruby
13 lines
321 B
Ruby
require 'formula'
|
|
|
|
class GitFtp < Formula
|
|
homepage 'https://github.com/resmo/git-ftp'
|
|
url 'https://github.com/resmo/git-ftp/archive/0.8.1.tar.gz'
|
|
sha1 '073040fd59b838c68499b98cc98bfd01a9feff09'
|
|
|
|
head 'https://github.com/resmo/git-ftp.git'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|