aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vcsh.rb
blob: b8cbc8228ba6c973d830fd45c4e7f4b23efaefb6 (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.20141026-manpage-static.tar.gz'
  version '1.20141026'
  sha1 '9e4fac6d354fca4bda32cab8fa7f0fffe4ddd110'

  def install
    bin.install 'vcsh'
    man1.install 'vcsh.1'
    zsh_completion.install '_vcsh'
  end

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