aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-ftp.rb
blob: 00f022e8ebe36162a6f8456c72c1250ea50c7f61 (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.7.5'
  sha1 'e893bcf1c3f67a54529b2d4a404f0e3b5bc7696f'

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

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