2012-12-12 15:02:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vcsh < Formula
|
|
|
|
homepage 'https://github.com/RichiH/vcsh'
|
2013-04-21 19:29:06 +00:00
|
|
|
url 'https://github.com/RichiH/vcsh/archive/v1.2-homebrew.tar.gz'
|
|
|
|
version '1.2'
|
|
|
|
sha1 '1114b6069b0ef2ca7606287664f4f0175829e968'
|
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'
|
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
|