diff options
| author | Ivan Torres | 2009-10-28 19:48:25 -0600 |
|---|---|---|
| committer | Max Howell | 2009-11-07 18:22:35 +0000 |
| commit | b962f8588d92be1e2cd94cffe8a308d54d1657e1 (patch) | |
| tree | f4af6f8a2befda9e7dcb6d719fe0f163e7b78822 | |
| parent | 224f6d4e77ec77853a0a7294544baf3a2cba3661 (diff) | |
| download | homebrew-b962f8588d92be1e2cd94cffe8a308d54d1657e1.tar.bz2 | |
adding vcprompt formula
| -rw-r--r-- | Library/Formula/vcprompt.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/vcprompt.rb b/Library/Formula/vcprompt.rb new file mode 100644 index 000000000..5d9cc11a8 --- /dev/null +++ b/Library/Formula/vcprompt.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Vcprompt < Formula + + head 'git://github.com/simple/vcprompt.git' + homepage 'http://vc.gerg.ca/hg/vcprompt/' + + def install + system "make" + # Install manually; 'make install' doesn't work. + bin.install "vcprompt" + end +end + |
