blob: 0c56622a526aabf5494101fb158d4a4cfb5561d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Parallel < Formula
url 'http://ftp.gnu.org/gnu/parallel/parallel-20110322.tar.bz2'
homepage 'http://savannah.gnu.org/projects/parallel/'
md5 '2e8eafdc2fa21d99bfc22aac01e245ef'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|