aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-ftp.rb
blob: ced5697e9b54355590720bf3fbd853fc87d5ddf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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