diff options
| author | Aurélien Thieriot | 2011-05-14 13:56:46 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2011-11-25 22:52:46 -0800 |
| commit | 1eb8c47fc7acc4e27bd8a9b9c2174a902e761a9b (patch) | |
| tree | 6b11859e1ba8d2cee5e43e0f494f629fcfee17a3 /Library/Formula | |
| parent | a44d5d5572cb2d3d834db647a7aea1fd240f54d7 (diff) | |
| download | homebrew-1eb8c47fc7acc4e27bd8a9b9c2174a902e761a9b.tar.bz2 | |
vf 0.0.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/vf.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/vf.rb b/Library/Formula/vf.rb new file mode 100644 index 000000000..0158fa440 --- /dev/null +++ b/Library/Formula/vf.rb @@ -0,0 +1,21 @@ +require 'formula' + +class Vf < Formula + url 'https://github.com/glejeune/vf/tarball/0.0.1' + homepage 'https://github.com/glejeune/vf' + md5 'c1d1c7dd52a960b01c5870165593dc35' + + head 'https://github.com/glejeune/vf.git' + + def install + # Since the shell file is sourced instead of run + # install to prefix instead of bin + prefix.install Dir['*'] + end + + def caveats; <<-EOS.undent + To complete installation, add the following line to your shell's rc file: + source #{prefix}/vf.sh + EOS + end +end |
