2014-09-27 02:15:46 +00:00
|
|
|
class Mdp < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Command-line based markdown presentation tool"
|
2014-09-27 02:15:46 +00:00
|
|
|
homepage "https://github.com/visit1985/mdp"
|
2015-09-29 23:36:28 +00:00
|
|
|
url "https://github.com/visit1985/mdp/archive/1.0.1.tar.gz"
|
|
|
|
sha256 "be912e2201fae57d92797dafa3045a202147a633db26fd9407251b80ab07b96e"
|
2015-01-25 21:49:10 +00:00
|
|
|
head "https://github.com/visit1985/mdp.git"
|
2014-09-27 02:15:46 +00:00
|
|
|
|
2014-10-01 00:29:36 +00:00
|
|
|
bottle do
|
2015-09-30 04:40:52 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "08baaf77c3a11bbcf1193956fc004f437b01ec10721f649059ad2bcab9acd44c" => :el_capitan
|
|
|
|
sha256 "1e1b20c31624cf8c21c6ac41ae1b4acfd1eb8c602bb2e5b459d1c8151dc16ac5" => :yosemite
|
|
|
|
sha256 "640381a2570d9ad833d26fd955240a6e5024e1c8b0309e748adafbb0ff56b643" => :mavericks
|
2014-10-01 00:29:36 +00:00
|
|
|
end
|
|
|
|
|
2014-09-27 02:15:46 +00:00
|
|
|
def install
|
|
|
|
system "make"
|
2014-10-31 20:30:41 +00:00
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
2014-09-27 02:15:46 +00:00
|
|
|
share.install "sample.md"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
# Go through two slides and quit.
|
|
|
|
ENV["TERM"] = "xterm"
|
2015-01-25 21:49:10 +00:00
|
|
|
pipe_output "#{bin}/mdp #{share}/sample.md", "jjq", 0
|
2014-09-27 02:15:46 +00:00
|
|
|
end
|
|
|
|
end
|