discount and markdown conflict with each other
This commit is contained in:
parent
f8c6d9977a
commit
c38bc4b43a
2 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,9 @@ class Discount < Formula
|
|||
url 'https://github.com/Orc/discount/tarball/v2.1.5a'
|
||||
sha1 '73dcf117fa6ca15332c67f246544cd224bfc1774'
|
||||
|
||||
conflicts_with 'markdown',
|
||||
:because => 'both discount and markdown ship a `markdown` executable.'
|
||||
|
||||
def install
|
||||
system "./configure.sh", "--prefix=#{prefix}",
|
||||
"--mandir=#{man}",
|
||||
|
|
|
@ -5,6 +5,9 @@ class Markdown < Formula
|
|||
homepage 'http://daringfireball.net/projects/markdown/'
|
||||
sha1 '7e6d1d9224f16fec5631bf6bc5147f1e64715a4b'
|
||||
|
||||
conflicts_with 'discount',
|
||||
:because => 'both markdown and discount ship a `markdown` executable.'
|
||||
|
||||
def install
|
||||
bin.install 'Markdown.pl' => 'markdown'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue