f8ae9a5821
Closes Homebrew/homebrew#10525. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
305 B
Ruby
13 lines
305 B
Ruby
require 'formula'
|
|
|
|
class GitFtp < Formula
|
|
homepage 'https://github.com/resmo/git-ftp'
|
|
url 'https://github.com/resmo/git-ftp/tarball/0.7.2'
|
|
md5 'a4e3cd6d2dd008c0f49b5292efa7be42'
|
|
|
|
head 'https://github.com/resmo/git-ftp.git'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|