diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/v.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/v.rb b/Library/Formula/v.rb new file mode 100644 index 000000000..48d0fe1e6 --- /dev/null +++ b/Library/Formula/v.rb @@ -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 |
