homebrew-core/Formula/git-ftp.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

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