homebrew-core/Formula/asciidoc.rb

50 lines
1.4 KiB
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Asciidoc < Formula
2014-12-29 07:09:57 +00:00
homepage "http://www.methods.co.nz/asciidoc"
url "https://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.9/asciidoc-8.6.9.tar.gz"
sha1 "82e574dd061640561fa0560644bc74df71fb7305"
2012-07-07 18:08:22 +00:00
2014-03-13 20:14:00 +00:00
bottle do
cellar :any
2014-10-21 20:14:10 +00:00
revision 1
sha1 "14ff65fa337658acf5011b24a728a2f6f413fd3c" => :yosemite
sha1 "84793575a498025283f81295feeee74103386b70" => :mavericks
sha1 "7c932bea7c4d3e56072a7adb5cd4914cd5972414" => :mountain_lion
2014-03-13 20:14:00 +00:00
end
2013-09-22 00:27:25 +00:00
head do
2014-12-29 07:09:57 +00:00
url "https://code.google.com/p/asciidoc/", :using => :hg
2014-06-02 02:38:17 +00:00
depends_on "autoconf" => :build
2013-09-22 00:27:25 +00:00
end
2014-12-29 07:09:57 +00:00
depends_on "docbook"
def install
2012-08-09 23:21:05 +00:00
system "autoconf" if build.head?
system "./configure", "--prefix=#{prefix}"
# otherwise OS X's xmllint bails out
2014-12-29 07:09:57 +00:00
inreplace "Makefile", "-f manpage", "-f manpage -L"
system "make", "install"
end
def caveats; <<-EOS.undent
If you intend to process AsciiDoc files through an XML stage
(such as a2x for manpage generation) you need to add something
like:
export XML_CATALOG_FILES=#{HOMEBREW_PREFIX}/etc/xml/catalog
to your shell rc file so that xmllint can find AsciiDoc's
catalog files.
See `man 1 xmllint' for more.
EOS
end
test do
(testpath/"test.txt").write("== Hello World!")
system "#{bin}/asciidoc", "-b", "html5", "-o", "test.html", "test.txt"
assert_match /\<h2 id="_hello_world"\>Hello World!\<\/h2\>/, File.read("test.html")
end
2009-11-21 06:38:52 +00:00
end