homebrew-core/Formula/discount.rb

17 lines
453 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Discount < Formula
url 'https://github.com/Orc/discount/tarball/v2.0.9'
homepage 'http://www.pell.portland.or.us/~orc/Code/markdown/'
md5 '3190e8f3d4a607537faa4ccc3d92ea6d'
def install
system "./configure.sh", "--prefix=#{prefix}", "--mandir=#{man}",
"--with-dl=Both", "--enable-all-features"
2010-02-03 12:40:24 +00:00
bin.mkdir
lib.mkdir
include.mkdir
system "make install.everything"
end
end