homebrew-core/Formula/git-ftp.rb

14 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