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