homebrew-core/Formula/historian.rb
Jake McKnight 4075bb9b82 historian 0.2 (new formula)
Install historian bash history utility. https://github.com/jcsalterego/historian

Closes #12407.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2017-04-18 18:27:31 -07:00

21 lines
559 B
Ruby

class Historian < Formula
desc "Command-line utility for managing shell history in a SQLite database."
homepage "https://github.com/jcsalterego/historian"
url "https://github.com/jcsalterego/historian/archive/0.0.2.tar.gz"
sha256 "691b131290ddf06142a747755412115fec996cb9cc2ad8e8f728118788b3fe05"
bottle :unneeded
def install
bin.install "hist"
end
test do
ENV["HISTORIAN_SRC"] = "test_history"
(testpath/"test_history").write <<-EOS.undent
brew update
brew upgrade
EOS
system bin/"hist", "import"
end
end