aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-01-02 23:36:18 -0600
committerJack Nagel2013-01-02 23:36:18 -0600
commit8c61ff650ed783ad700614ca70903cd5f5eed86d (patch)
tree00f59912d5f1fc9284f1a8c9588e4444bfdba53c /Library
parent5a9b6adb71f540be879eee79040a5e2d6336f67e (diff)
downloadhomebrew-8c61ff650ed783ad700614ca70903cd5f5eed86d.tar.bz2
moreutils and task-spooler conflict
Fixes #16850.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/moreutils.rb3
-rw-r--r--Library/Formula/task-spooler.rb3
2 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/moreutils.rb b/Library/Formula/moreutils.rb
index d530319f2..9b77e186f 100644
--- a/Library/Formula/moreutils.rb
+++ b/Library/Formula/moreutils.rb
@@ -9,6 +9,9 @@ class Moreutils < Formula
conflicts_with 'parallel',
:because => "both install a 'parallel' executable."
+ conflicts_with 'task-spooler',
+ :because => "both install a 'ts' executable."
+
def install
# Building the man pages requires DocBook, so we skip them.
scripts = %w[chronic combine ts vidir vipe zrun]
diff --git a/Library/Formula/task-spooler.rb b/Library/Formula/task-spooler.rb
index 3313c40f7..6bea30810 100644
--- a/Library/Formula/task-spooler.rb
+++ b/Library/Formula/task-spooler.rb
@@ -5,6 +5,9 @@ class TaskSpooler < Formula
url 'http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.7.3.tar.gz'
sha1 '33b9321d4f48a2c2685a8240db4e00c0e69ef9bc'
+ conflicts_with 'moreutils',
+ :because => "both install a 'ts' executable."
+
def install
system "make", "install", "PREFIX=#{prefix}"
end