2011-05-24 23:03:14 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Multimarkdown < Formula
|
|
|
|
homepage 'http://fletcherpenney.net/multimarkdown/'
|
2012-01-19 17:02:48 +00:00
|
|
|
url 'https://github.com/fletcher/peg-multimarkdown/tarball/3.5'
|
|
|
|
md5 '3ba5725c96b1c12f5c2419be9753bf80'
|
2011-06-22 09:06:01 +00:00
|
|
|
head 'https://github.com/fletcher/peg-multimarkdown.git', :branch => 'development'
|
2011-05-24 23:03:14 +00:00
|
|
|
|
|
|
|
def install
|
2011-10-10 12:39:02 +00:00
|
|
|
ENV.append 'CFLAGS', '-include GLibFacade.h'
|
2011-05-24 23:03:14 +00:00
|
|
|
system "make"
|
|
|
|
bin.install 'multimarkdown'
|
2011-06-22 09:06:01 +00:00
|
|
|
bin.install Dir['Support/bin/*']
|
|
|
|
bin.install Dir['scripts/*']
|
2011-05-24 23:03:14 +00:00
|
|
|
end
|
|
|
|
end
|