homebrew-core/Formula/vcprompt.rb

15 lines
259 B
Ruby

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