aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vcprompt.rb
blob: 35fe51c91bac74ae0495ad8e9ce16436f9de1f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Vcprompt < Formula
  homepage 'https://bitbucket.org/gward/vcprompt'
  url 'https://bitbucket.org/gward/vcprompt/downloads/vcprompt-1.1.tar.gz'
  sha1 '6982e3ecc0c677546da1e067984c0e25c3f9261c'

  head 'hg://https://bitbucket.org/gward/vcprompt'

  def install
    system "make", "PREFIX=#{prefix}",
                   "MANDIR=#{man1}",
                   "install"
  end

  test do
    system "#{bin}/vcprompt"
  end
end