blob: 0a39d96f3209e2369cacf1d72b935779fcc5f99f (
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.1/asciidoc-8.6.1.tar.gz'
  md5 '3d16b16a953c0c2d00b6a6d089882d0e'
  homepage 'http://www.methods.co.nz/asciidoc'
  def install
    system "./configure", "--disable-debug", "--prefix=#{prefix}"
    system "make install"
  end
end
  |