homebrew-core/Formula/mdp.rb
Ian Langworth ☠ 831f279e9d mdp 0.91.2 (new formula)
mdp is "A command-line based markdown presentation tool." This program was
announced recently on Hacker News and has proved useful.
2014-10-01 23:29:29 -07:00

19 lines
453 B
Ruby

require "formula"
class Mdp < Formula
homepage "https://github.com/visit1985/mdp"
url "https://github.com/visit1985/mdp/archive/0.91.3.tar.gz"
sha1 "e8a0264068c21df1f00e391ec22e674141fddcc1"
def install
system "make"
system "make", "install", "DESTDIR=#{bin}"
share.install "sample.md"
end
test do
# Go through two slides and quit.
ENV["TERM"] = "xterm"
system "echo jjq | #{bin}/mdp #{share}/sample.md"
end
end