13 lines
304 B
Ruby
13 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.6.0'
|
||
|
md5 'eed5f57d37d2cf46a5b92da9901182fd'
|
||
|
head 'https://github.com/resmo/git-ftp.git'
|
||
|
|
||
|
def install
|
||
|
system "make", "prefix=#{prefix}", "install"
|
||
|
end
|
||
|
end
|