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-09-04 09:36:20 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.6/asciidoc-8.6.6.tar.gz'
|
|
|
|
md5 '44b872d9c300ffa5a8fe8b3c4d10957c'
|
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
|
2011-09-04 19:12:43 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2009-11-21 06:38:52 +00:00
|
|
|
end
|