2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Asciidoc < Formula
|
2012-07-07 18:08:22 +00:00
|
|
|
homepage 'http://www.methods.co.nz/asciidoc'
|
2012-11-04 17:07:06 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.8/asciidoc-8.6.8.tar.gz'
|
|
|
|
sha1 '2fd88f6ca9d2a5e09045fb300f4a908fe6eeb092'
|
2012-07-07 18:08:22 +00:00
|
|
|
|
2011-08-16 09:43:20 +00:00
|
|
|
head 'https://code.google.com/p/asciidoc/', :using => :hg
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2012-08-09 23:21:05 +00:00
|
|
|
depends_on :autoconf if build.head?
|
2011-10-29 16:21:52 +00:00
|
|
|
depends_on 'docbook'
|
|
|
|
|
2009-06-04 18:21:19 +00:00
|
|
|
def install
|
2012-08-09 23:21:05 +00:00
|
|
|
system "autoconf" if build.head?
|
2011-09-04 19:12:43 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2011-10-29 16:21:52 +00:00
|
|
|
|
|
|
|
# otherwise OS X's xmllint bails out
|
|
|
|
inreplace 'Makefile', '-f manpage', '-f manpage -L'
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2009-11-21 06:38:52 +00:00
|
|
|
end
|