aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/asciidoc.rb
blob: a9b8ed37dbce9633665499aba73bfcbbb3e0f209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Asciidoc < Formula
  url 'http://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.5/asciidoc-8.6.5.tar.gz'
  md5 '9247724283501ec1cfb27d5eae9e5eaf'
  homepage 'http://www.methods.co.nz/asciidoc'

  def install
    system "./configure", "--disable-debug", "--prefix=#{prefix}"
    system "make install"
  end
end