blob: cef2baa9b8dd23e18d7bb3e6bafa94f45d15503f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Discount < Formula
url 'https://github.com/Orc/discount/tarball/v2.0.8'
homepage 'http://www.pell.portland.or.us/~orc/Code/markdown/'
md5 '36b3abee3f3c7b370555f353b80857df'
def install
system "./configure.sh", "--prefix=#{prefix}", "--mandir=#{man}",
"--with-dl=Both", "--enable-all-features"
bin.mkdir
lib.mkdir
include.mkdir
system "make install.everything"
end
end
|