aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/parallel.rb
blob: 3e23550dd0d9f7b9f8e92cba57114def35b6a55a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require "formula"

class Parallel < Formula
  homepage "http://savannah.gnu.org/projects/parallel/"
  url "http://ftpmirror.gnu.org/parallel/parallel-20140822.tar.bz2"
  mirror "http://ftp.gnu.org/gnu/parallel/parallel-20140822.tar.bz2"
  sha256 "8a146a59bc71218921d561f2c801b85e06fe3a21571083b58e6e0966dd397fd4"

  bottle do
    sha1 "54069a978ae98bb32cd27cabb92bd4d54f83d65d" => :mavericks
    sha1 "9ee4590045684e5e29fb341f496bea5ec732f23e" => :mountain_lion
    sha1 "aad86080cc2d9ae2f4e9db3f765672334eca3802" => :lion
  end

  conflicts_with "moreutils",
    :because => "both install a 'parallel' executable. See the --without-parallel option for 'moreutils'"

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end