docutils 0.12 (new formula)

Closes #910.

Signed-off-by: Andrew Janke <andrew@apjanke.net>
This commit is contained in:
Kirill A. Korinsky 2015-10-06 11:05:29 +04:00 committed by Andrew Janke
parent f08e21a796
commit 74e4e1d7fb

14
Formula/docutils.rb Normal file
View file

@ -0,0 +1,14 @@
class Docutils < Formula
desc "Text processing system for reStructuredText"
homepage "http://docutils.sourceforge.net"
url "https://downloads.sourceforge.net/project/docutils/docutils/0.12/docutils-0.12.tar.gz"
sha256 "c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa"
def install
system "python", *Language::Python.setup_install_args(prefix)
end
test do
system "#{bin}/rst2man.py", "#{prefix}/HISTORY.txt"
end
end