blob: e1b0893b3b6e466cd03fabde4b600fdc073ff86e (
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.3'
md5 'b5fdc018ddc62258ad6885dce35babb6'
head 'https://github.com/resmo/git-ftp.git'
def install
system "make", "prefix=#{prefix}", "install"
end
end
|