homebrew-core/Formula/asciidoc.rb

13 lines
344 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Asciidoc < Formula
url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.5/asciidoc-8.6.5.tar.gz'
md5 '9247724283501ec1cfb27d5eae9e5eaf'
2009-11-21 06:38:52 +00:00
homepage 'http://www.methods.co.nz/asciidoc'
def install
2009-11-21 06:38:52 +00:00
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make install"
end
2009-11-21 06:38:52 +00:00
end