homebrew-core/Formula/parallel.rb
Brett Koonce 1a00cb01b1 parallel 20130822
Closes Homebrew/homebrew#22567.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-15 11:45:03 -07:00

16 lines
498 B
Ruby

require 'formula'
class Parallel < Formula
homepage 'http://savannah.gnu.org/projects/parallel/'
url 'http://ftpmirror.gnu.org/parallel/parallel-20130822.tar.bz2'
mirror 'http://ftp.gnu.org/gnu/parallel/parallel-20130822.tar.bz2'
sha256 'b857c744479fe19137bdbd240dd6205882b31be924c9ce0a0f4566e67e8d25d9'
conflicts_with 'moreutils',
:because => "both install a 'parallel' executable."
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end