homebrew-core/Formula/discount.rb

17 lines
456 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Discount < Formula
homepage 'http://www.pell.portland.or.us/~orc/Code/discount/'
2012-02-22 04:48:36 +00:00
url 'https://github.com/Orc/discount/tarball/v2.1.3'
md5 '0c6db0556506724dac050ec19ab625b5'
def install
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"
end
end