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
|
2011-05-20 22:02:04 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.5/asciidoc-8.6.5.tar.gz'
|
|
|
|
md5 '9247724283501ec1cfb27d5eae9e5eaf'
|
2011-08-16 09:43:20 +00:00
|
|
|
head 'https://code.google.com/p/asciidoc/', :using => :hg
|
2009-11-21 06:38:52 +00:00
|
|
|
homepage 'http://www.methods.co.nz/asciidoc'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
def install
|
2011-08-16 09:43:20 +00:00
|
|
|
if ARGV.build_head? and not File.exists? "./configure"
|
|
|
|
ohai "Creating configure file"
|
|
|
|
system "autoconf"
|
|
|
|
end
|
2009-11-21 06:38:52 +00:00
|
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2009-11-21 06:38:52 +00:00
|
|
|
end
|