07f14d8327
Docbook is a run-time dep and is also a build-time dep of asciidoc's HEAD, since it has to build its own documentation. Also, fix a breakage in the HEAD build caused by OS X's xmllint being too old or broken and remove a useless `ohai` call. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
584 B
Ruby
19 lines
584 B
Ruby
require 'formula'
|
|
|
|
class Asciidoc < Formula
|
|
url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.6/asciidoc-8.6.6.tar.gz'
|
|
md5 '44b872d9c300ffa5a8fe8b3c4d10957c'
|
|
head 'https://code.google.com/p/asciidoc/', :using => :hg
|
|
homepage 'http://www.methods.co.nz/asciidoc'
|
|
|
|
depends_on 'docbook'
|
|
|
|
def install
|
|
system "autoconf" if ARGV.build_head? and not File.exists? "./configure"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
# otherwise OS X's xmllint bails out
|
|
inreplace 'Makefile', '-f manpage', '-f manpage -L'
|
|
system "make install"
|
|
end
|
|
end
|