aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexander Graefe2015-03-17 07:40:07 +0100
committerJack Nagel2015-03-22 11:14:08 -0400
commit29295bcc6987f00a0b37696923784d4c3df34e94 (patch)
tree4589614ac7b16921418c7f65ddece3d6797f1734 /Library
parenteab4aba48008e2eb2e62531c50e9a0fc18b582f6 (diff)
downloadhomebrew-29295bcc6987f00a0b37696923784d4c3df34e94.tar.bz2
multimarkdown 4.7.1
Closes #37786. Closes #37583. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/multimarkdown.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/multimarkdown.rb b/Library/Formula/multimarkdown.rb
index df2029599..cac09bba5 100644
--- a/Library/Formula/multimarkdown.rb
+++ b/Library/Formula/multimarkdown.rb
@@ -3,7 +3,8 @@ require 'formula'
class Multimarkdown < Formula
homepage 'http://fletcherpenney.net/multimarkdown/'
# Use git tag instead of the tarball to get submodules
- url 'https://github.com/fletcher/MultiMarkdown-4.git', :tag => '4.6'
+ url "https://github.com/fletcher/MultiMarkdown-4.git", :tag => "4.7.1",
+ :revision => "3083076038cdaceb666581636ef9e1fc68472ff0"
head 'https://github.com/fletcher/MultiMarkdown-4.git'
bottle do
@@ -18,6 +19,7 @@ class Multimarkdown < Formula
def install
ENV.append 'CFLAGS', '-g -O3 -include GLibFacade.h'
system "make"
+ rm_f Dir["scripts/*.bat"]
bin.install 'multimarkdown', Dir['scripts/*']
prefix.install 'Support'
end