ec45270e1a
Closes Homebrew/homebrew#20884. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
326 B
Ruby
13 lines
326 B
Ruby
require 'formula'
|
|
|
|
class GitFtp < Formula
|
|
homepage 'http://git-ftp.github.io/git-ftp/'
|
|
url 'https://github.com/git-ftp/git-ftp/archive/0.8.4.tar.gz'
|
|
sha1 '77b615993d0095ad700e6ee6d82ef4005e5e2269'
|
|
|
|
head 'https://github.com/git-ftp/git-ftp.git'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|