2012-12-12 15:02:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vcsh < Formula
|
|
|
|
homepage 'https://github.com/RichiH/vcsh'
|
2013-08-30 12:43:34 +00:00
|
|
|
url 'https://github.com/RichiH/vcsh/archive/v1.20130829-homebrew.tar.gz'
|
|
|
|
version '1.20130829'
|
|
|
|
sha1 '68be053bf19c77d1fc71e70e71bc0c182f8ca5c9'
|
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
|