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
|
|
|
homepage 'http://www.pell.portland.or.us/~orc/Code/discount/'
|
2012-08-10 05:20:59 +00:00
|
|
|
url 'https://github.com/Orc/discount/tarball/v2.1.5a'
|
|
|
|
sha1 '73dcf117fa6ca15332c67f246544cd224bfc1774'
|
2010-01-15 03:55:50 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-06 21:05:16 +00:00
|
|
|
system "./configure.sh", "--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}",
|
|
|
|
"--with-dl=Both",
|
|
|
|
"--enable-all-features"
|
2012-02-22 04:48:36 +00:00
|
|
|
bin.mkpath
|
|
|
|
lib.mkpath
|
|
|
|
include.mkpath
|
2010-02-03 12:40:24 +00:00
|
|
|
system "make install.everything"
|
2010-01-15 03:55:50 +00:00
|
|
|
end
|
|
|
|
end
|