homebrew-core/Formula/vcsh.rb
Adam Stankiewicz 3a54d9c044 vcsh 1.0-1
Closes Homebrew/homebrew#16532.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-06 21:30:28 -08:00

18 lines
316 B
Ruby

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