parallel and moreutils conflict

Closes Homebrew/homebrew#16719.
master
Jack Nagel 2012-12-24 11:41:46 -06:00
parent 90b82c1ffa
commit 11362af3d4
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,9 @@ class Moreutils < Formula
mirror 'http://ftp.us.debian.org/debian/pool/main/m/moreutils/moreutils_0.47.tar.gz'
sha1 '0459608fdb37bc59605d7a476717693afd133e00'
conflicts_with 'parallel',
:because => "both install a 'parallel' executable."
def install
# Building the man pages requires DocBook, so we skip them.
scripts = %w[chronic combine ts vidir vipe zrun]

View File

@ -6,6 +6,9 @@ class Parallel < Formula
mirror 'http://ftp.gnu.org/gnu/parallel/parallel-20121222.tar.bz2'
sha256 '0ce96ad4e36734baae7ce6c8d99d004810fbfdf5209d6f86d5b5fc9a92dc17f8'
conflicts_with 'moreutils',
:because => "both install a 'parallel' executable."
def install
system "./configure", "--prefix=#{prefix}"
system "make install"