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