2012-12-12 15:02:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vcsh < Formula
|
|
|
|
homepage 'https://github.com/RichiH/vcsh'
|
2014-01-15 01:43:11 +00:00
|
|
|
url 'https://github.com/RichiH/vcsh/archive/v1.20131229-homebrew.tar.gz'
|
|
|
|
version '1.20131229'
|
|
|
|
sha1 'e8e19f433e81f396179b58edf45797de7a7a630a'
|
2012-12-12 15:02:18 +00:00
|
|
|
|
|
|
|
depends_on 'mr'
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'vcsh'
|
2013-03-30 23:53:46 +00:00
|
|
|
man1.install 'vcsh.1'
|
2013-08-24 14:13:48 +00:00
|
|
|
zsh_completion.install '_vcsh'
|
2012-12-12 15:02:18 +00:00
|
|
|
end
|
|
|
|
|
2013-03-25 18:35:22 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/vcsh"
|
2012-12-12 15:02:18 +00:00
|
|
|
end
|
|
|
|
end
|