homebrew-core/Formula/parallel.rb
jtimberman cf2e3adc7d update parallel to fosdem release version
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-05 08:53:47 -08:00

12 lines
304 B
Ruby

require 'formula'
class Parallel <Formula
url 'http://ftp.gnu.org/gnu/parallel/parallel-20110205.tar.bz2'
homepage 'http://savannah.gnu.org/projects/parallel/'
md5 '4a8484fd4e11fd2fee63ee763f22786c'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end