2009-10-29 01:48:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vcprompt < Formula
|
|
|
|
|
2010-02-02 01:23:41 +00:00
|
|
|
head 'hg://http://vc.gerg.ca/hg/vcprompt/'
|
2009-10-29 01:48:25 +00:00
|
|
|
homepage 'http://vc.gerg.ca/hg/vcprompt/'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
# Install manually; 'make install' doesn't work.
|
|
|
|
bin.install "vcprompt"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|