aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vcprompt.rb
blob: 5d9cc11a877b5e48bae43a5190a1af488d09258c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Vcprompt < Formula

  head 'git://github.com/simple/vcprompt.git'
  homepage 'http://vc.gerg.ca/hg/vcprompt/'

  def install
    system "make"
    # Install manually; 'make install' doesn't work.
    bin.install "vcprompt"
  end
end