homebrew-core/Formula/mdv.rb
2019-12-29 13:18:48 +01:00

51 lines
1.9 KiB
Ruby

class Mdv < Formula
include Language::Python::Virtualenv
desc "Styled terminal markdown viewer"
homepage "https://github.com/axiros/terminal_markdown_viewer"
url "https://github.com/axiros/terminal_markdown_viewer/archive/1.6.3.tar.gz"
sha256 "58dbdf8c051a2d7f8c00e4dc13c655c335cbc2bc96851dd0388d73a21c4507b6"
revision 2
bottle do
cellar :any_skip_relocation
sha256 "2fcb9eccdbbea185a283d4b56da15cbf71fdb8a8d34139d7d9a54d8523981591" => :catalina
sha256 "22a148919646e046da5af4c20c465cb16655add99fad11579a58178112a791f9" => :mojave
sha256 "2e3db65a118614ea9cc3f734b5158460dce1e07f50ed241a468e0fe4d53136b1" => :high_sierra
end
depends_on "python@3.8"
resource "docopt" do
url "https://files.pythonhosted.org/packages/a2/55/8f8cab2afd404cf578136ef2cc5dfb50baa1761b68c9da1fb1e4eed343c9/docopt-0.6.2.tar.gz"
sha256 "49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"
end
resource "Markdown" do
url "https://files.pythonhosted.org/packages/d4/32/642bd580c577af37b00a1eb59b0eaa996f2d11dfe394f3dd0c7a8a2de81a/Markdown-2.6.7.tar.gz"
sha256 "daebf24846efa7ff269cfde8c41a48bb2303920c7b2c7c5e04fa82e6282d05c0"
end
resource "Pygments" do
url "https://files.pythonhosted.org/packages/b8/67/ab177979be1c81bc99c8d0592ef22d547e70bb4c6815c383286ed5dec504/Pygments-2.1.3.tar.gz"
sha256 "88e4c8a91b2af5962bfa5ea2447ec6dd357018e86e94c7d14bd8cacbc5b55d81"
end
resource "PyYAML" do
url "https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz"
sha256 "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"
end
def install
virtualenv_install_with_resources
end
test do
(testpath/"test.md").write <<~EOS
# Header 1
## Header 2
### Header 3
EOS
system "#{bin}/mdv", "#{testpath}/test.md"
end
end