aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-ftp.rb
blob: 4aa4c93b13495653ebc6dceb8833f6fab36a51a7 (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.6.0'
  md5 'eed5f57d37d2cf46a5b92da9901182fd'
  head 'https://github.com/resmo/git-ftp.git'

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