homebrew-core/Formula/hr.rb
Aleksandar Simic 928e47e2fc hr formula update to 1.1
Updated hr formula to the latest (1.1) version

Closes Homebrew/homebrew#26856.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-02-20 10:56:16 -06:00

18 lines
360 B
Ruby

require 'formula'
class Hr < Formula
homepage 'https://github.com/LuRsT/hr'
url 'https://github.com/LuRsT/hr/archive/1.1.tar.gz'
sha1 '72e0a7836fe5181205de816bb5e0d44be3a8961f'
head 'https://github.com/LuRsT/hr', :branch => 'master'
def install
bin.install 'hr'
man1.install 'hr.1'
end
test do
system "#{bin}/hr", "-#-"
end
end