homebrew-core/Formula/v.rb
Jared Miller e9242e625e v 1.0
Closes Homebrew/homebrew#22233.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-15 12:39:35 -07:00

13 lines
287 B
Ruby

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