aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vcprompt.rb
blob: f02d2150d98cc1017fcd26b3f30a8b49a845283e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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