aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-ftp.rb
blob: 2d6c189b4f5110fba934399e8a243ba1063bca7f (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/archive/0.8.1.tar.gz'
  sha1 '073040fd59b838c68499b98cc98bfd01a9feff09'

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

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