aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/asciidoc.rb
blob: 0dfccf9af18ed0c6d82f9cdd49f6893c3abca2e9 (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.5.3/asciidoc-8.5.3.tar.gz'
  md5 '7377872275c2a575151655b19ac6dd3e'
  homepage 'http://www.methods.co.nz/asciidoc'

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