diff options
| author | Albert Volkman | 2012-02-09 17:30:45 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-18 15:28:53 -0800 |
| commit | 8f1b5684873584e9357e713b839e45dc31e6b776 (patch) | |
| tree | 612920bf9d06dbe11dc4d2b06f849c475658051f | |
| parent | de585b9114788b03aba80c29f6939b4dea34c391 (diff) | |
| download | homebrew-8f1b5684873584e9357e713b839e45dc31e6b776.tar.bz2 | |
Added git-ftp formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/git-ftp.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/git-ftp.rb b/Library/Formula/git-ftp.rb new file mode 100644 index 000000000..4aa4c93b1 --- /dev/null +++ b/Library/Formula/git-ftp.rb @@ -0,0 +1,12 @@ +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 |
