2010-01-15 03:55:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Discount < Formula
|
2011-08-26 23:38:42 +00:00
|
|
|
url 'https://github.com/Orc/discount/tarball/v2.1.1.3'
|
|
|
|
homepage 'http://www.pell.portland.or.us/~orc/Code/discount/'
|
|
|
|
md5 'd0bbf99e863e993a0c6861a4ac310a2e'
|
2010-01-15 03:55:50 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure.sh", "--prefix=#{prefix}", "--mandir=#{man}",
|
2011-02-21 12:42:46 +00:00
|
|
|
"--with-dl=Both", "--enable-all-features"
|
2010-02-03 12:40:24 +00:00
|
|
|
bin.mkdir
|
|
|
|
lib.mkdir
|
|
|
|
include.mkdir
|
|
|
|
system "make install.everything"
|
2010-01-15 03:55:50 +00:00
|
|
|
end
|
|
|
|
end
|