Closes Homebrew/homebrew#22233.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jared Miller 2013-08-30 19:42:32 -04:00 committed by Adam Vandenberg
parent 6cf7256e2c
commit e9242e625e
1 changed files with 13 additions and 0 deletions

13
Formula/v.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class V < Formula
homepage 'https://github.com/rupa/v'
head 'https://github.com/rupa/v.git'
url 'https://github.com/rupa/v/archive/v1.0.tar.gz'
sha1 '9e8ce44167a97c10ab41b8fc0e5ec1b2d1cbc4f3'
def install
bin.install 'v'
man1.install 'v.1'
end
end