blob: 730d2fa0f0c6823d41834be1e5b11bd09b5ca599 (
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.0.tar.gz'
  sha1 'a393d06a3b6030a822af53c985b6a170265ee901'
  head 'hg://https://bitbucket.org/gward/vcprompt'
  def install
    system "make", "PREFIX=#{prefix}",
                   "MANDIR=#{man1}",
                   "install"
  end
  test do
    system "#{bin}/vcprompt"
  end
end
  |