blob: d7401490aa8f5e378ce25c1ddfa022db7804cc2e (
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.4/asciidoc-8.6.4.tar.gz'
md5 '180512ef2b07b52ef351088f54e5803e'
homepage 'http://www.methods.co.nz/asciidoc'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make install"
end
end
|