homebrew-core/Formula/hr.rb
2015-06-05 14:47:57 +01:00

19 lines
381 B
Ruby

require 'formula'
class Hr < Formula
desc "<hr />, for your terminal window"
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'
def install
bin.install 'hr'
man1.install 'hr.1'
end
test do
system "#{bin}/hr", "-#-"
end
end