vifm 0.7.8

+ added `ENV.deparallelize` to fix installation on multicore systems
This commit is contained in:
Alexey Zakhlestin 2014-10-30 10:55:36 +03:00 committed by Mike McQuaid
parent 060691a56e
commit 3d1cae8c1c

View file

@ -2,12 +2,14 @@ require "formula"
class Vifm < Formula
homepage "http://vifm.sourceforge.net/index.html"
url "https://downloads.sourceforge.net/project/vifm/vifm/vifm-0.7.7.tar.bz2"
sha1 "edf5b245ca582e5a7b127a87fa5ab2ad210b76c3"
url "https://downloads.sourceforge.net/project/vifm/vifm/vifm-0.7.8.tar.bz2"
sha256 '5dfbb26c2038a58dcff12026dab736e29d547b4aa3ff5912e4d844064c9e7603'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
ENV.deparallelize
system "make install"
end
end