2012-12-12 15:02:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vcsh < Formula
|
|
|
|
homepage 'https://github.com/RichiH/vcsh'
|
2013-07-26 16:37:39 +00:00
|
|
|
url 'https://github.com/RichiH/vcsh/archive/v1.20130724-homebrew.tar.gz'
|
|
|
|
version '1.20130724'
|
|
|
|
sha1 '3cda5c059bbe40fbd55ff8d0d74dd9f327a15da2'
|
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
|