2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
class Asciidoc <Formula
|
2011-01-01 14:06:00 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.3/asciidoc-8.6.3.tar.gz'
|
|
|
|
md5 '1ef39786ee1b4c8a788584e73db2c55a'
|
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
|
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
|