5f14ec9432
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
304 B
Ruby
12 lines
304 B
Ruby
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
|