2012-12-12 15:02:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vcsh < Formula
|
|
|
|
homepage 'https://github.com/RichiH/vcsh'
|
2014-10-26 13:45:02 +00:00
|
|
|
url 'https://github.com/RichiH/vcsh/archive/v1.20141026-manpage-static.tar.gz'
|
|
|
|
version '1.20141026'
|
|
|
|
sha1 '9e4fac6d354fca4bda32cab8fa7f0fffe4ddd110'
|
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
|