84f4088f9c
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>
14 lines
258 B
Ruby
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
|
|
|