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