homebrew-core/Formula/speedread.rb
Christopher Loessl 04f55bb891 speedread 1.0 (new formula)
A simple terminal-based open source Spritz-alike.

This command line filter shows input text as a per-word RSVP (rapid
serial visual presentation) aligned on optimal reading points. This kind
of input mode allows reading text at a much more rapid pace than usual
as the eye can stay fixed on a single place.

Closes Homebrew/homebrew#47935.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2016-01-28 12:49:16 +01:00

18 lines
497 B
Ruby

class Speedread < Formula
desc "Simple terminal-based rapid serial visual presentation (RSVP) reader"
homepage "https://github.com/pasky/speedread"
url "https://github.com/pasky/speedread/archive/v1.0.tar.gz"
sha256 "a65f5bec427e66893663bcfc49a22e43169dd35976302eaed467eec2a5aafc1b"
head "https://github.com/pasky/speedread.git"
bottle :unneeded
def install
bin.install "speedread"
end
test do
system "#{bin}/speedread", "-w 1000", "<(echo This is a test)"
end
end