aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/parallel.rb
blob: f9df3e1fc7370f7f6af8a6a7eb800b036083e5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Parallel < Formula
  homepage 'http://savannah.gnu.org/projects/parallel/'
  url 'http://ftpmirror.gnu.org/parallel/parallel-20130222.tar.bz2'
  mirror 'http://ftp.gnu.org/gnu/parallel/parallel-20130222.tar.bz2'
  sha256 'ebd3a66ff96bfcb00812c08a856bdf0f02e3de8864613283917775f5551e20ef'

  conflicts_with 'moreutils',
    :because => "both install a 'parallel' executable."

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