homebrew-core/Formula/asciidoc.rb
Matt Aimonetti d7d419c742 updated asciidoc to version 8.6.3
Closes Homebrew/homebrew#3786.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2011-01-01 15:24:31 +00:00

12 lines
343 B
Ruby

require 'formula'
class Asciidoc <Formula
url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.3/asciidoc-8.6.3.tar.gz'
md5 '1ef39786ee1b4c8a788584e73db2c55a'
homepage 'http://www.methods.co.nz/asciidoc'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make install"
end
end