homebrew-core/Formula/vcsh.rb
Corey Quinn 24495f350a version 1.2
Closes Homebrew/homebrew#19342.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-04-21 18:43:09 -07:00

19 lines
353 B
Ruby

require 'formula'
class Vcsh < Formula
homepage 'https://github.com/RichiH/vcsh'
url 'https://github.com/RichiH/vcsh/archive/v1.2-homebrew.tar.gz'
version '1.2'
sha1 '1114b6069b0ef2ca7606287664f4f0175829e968'
depends_on 'mr'
def install
bin.install 'vcsh'
man1.install 'vcsh.1'
end
test do
system "#{bin}/vcsh"
end
end