cc9cf3c2c6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
305 B
Ruby
13 lines
305 B
Ruby
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
|