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

class Vcsh < Formula
  homepage 'https://github.com/RichiH/vcsh'
  url 'https://github.com/RichiH/vcsh/archive/v1.0-1.tar.gz'
  version '1.0-1'
  sha1 '23a72bc495fce299ee52ac98470f808a0a9a002f'

  depends_on 'mr'

  def install
    bin.install 'vcsh'
  end

  def test
    system "vcsh"
  end
end