homebrew-core/Formula/vcprompt.rb
Tuncer Ayaz 84f4088f9c vcprompt: use upstream hg repo instead of git mirror
The git mirror has a note that the hg repo
should be used instead. Change head url
accordingly.

Signed-off-by: Tuncer Ayaz <tuncer.ayaz@gmail.com>
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-02-07 11:58:22 -08:00

14 lines
258 B
Ruby

require 'formula'
class Vcprompt < Formula
head 'hg://http://vc.gerg.ca/hg/vcprompt/'
homepage 'http://vc.gerg.ca/hg/vcprompt/'
def install
system "make"
# Install manually; 'make install' doesn't work.
bin.install "vcprompt"
end
end