homebrew-core/Formula/discount.rb

19 lines
524 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/'
url 'https://github.com/Orc/discount/tarball/v2.1.5a'
sha1 '73dcf117fa6ca15332c67f246544cd224bfc1774'
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"
end
end