diff options
| -rw-r--r-- | Library/Formula/hr.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/hr.rb b/Library/Formula/hr.rb new file mode 100644 index 000000000..a648df357 --- /dev/null +++ b/Library/Formula/hr.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Hr < Formula + homepage 'https://github.com/LuRsT/hr' + url 'https://github.com/LuRsT/hr/archive/1.0.tar.gz' + sha1 '64abbc75d4e6cedd8ea4e15396e473298fc5240b' + + head 'https://github.com/LuRsT/hr', :branch => 'master' + + def install + bin.install 'hr' + end + + test do + system "#{bin}/hr", "-#-" + end +end |
