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