aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-ftp.rb
blob: 567ed764a7654ebead0d13097953a1754d879322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class GitFtp < Formula
  homepage 'https://github.com/resmo/git-ftp'
  url 'https://github.com/resmo/git-ftp/tarball/0.8.1'
  sha1 '4dd690b08d547e1927213efeb6fc2702459a9e94'

  head 'https://github.com/resmo/git-ftp.git'

  def install
    system "make", "prefix=#{prefix}", "install"
  end
end