2011-01-13 14:16:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Vde < Formula
|
2011-01-13 14:16:11 +00:00
|
|
|
homepage 'http://vde.sourceforge.net/'
|
2012-03-11 00:57:59 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/vde/vde2/2.3.2/vde2-2.3.2.tar.gz'
|
|
|
|
sha256 '22df546a63dac88320d35d61b7833bbbcbef13529ad009c7ce3c5cb32250af93'
|
2011-01-13 14:16:11 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2012-03-11 00:57:59 +00:00
|
|
|
# 2.3.1 built in parallel but 2.3.2 does not. See:
|
|
|
|
# https://sourceforge.net/tracker/?func=detail&aid=3501432&group_id=95403&atid=611248
|
|
|
|
ENV.j1
|
2011-01-13 14:16:11 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|