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

class GitFtp < Formula
  homepage 'https://github.com/resmo/git-ftp'
  url 'https://github.com/resmo/git-ftp/tarball/0.7.1'
  md5 '55512e24c8be66e333da98bb3c3e2b10'
  head 'https://github.com/resmo/git-ftp.git'

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