aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexandre Gramfort2011-10-04 09:16:45 -0400
committerCharlie Sharpsteen2011-10-05 14:36:34 -0700
commitad01940e094b609343603158eb2534af94636e44 (patch)
treeb551b83ae5c277c5712b7cb26c18b9484d9462f1 /Library/Formula
parenta0fde46e6c52e0b6be89c61796f0eb64e4a00a2d (diff)
downloadhomebrew-ad01940e094b609343603158eb2534af94636e44.tar.bz2
FIO: Update to 1.58
Closes #7966. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fio.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Formula/fio.rb b/Library/Formula/fio.rb
index c265f2760..2af4719d5 100644
--- a/Library/Formula/fio.rb
+++ b/Library/Formula/fio.rb
@@ -1,12 +1,15 @@
require 'formula'
class Fio < Formula
- url 'http://brick.kernel.dk/snaps/fio-1.37.tar.bz2'
+ url 'http://brick.kernel.dk/snaps/fio-1.58.tar.bz2'
homepage 'http://freshmeat.net/projects/fio/'
- md5 'a6b64ffef21c0c9e3dc3c36e87f988a5'
+ md5 'bc5600997788bce5647576a4976d461d'
def install
- make_cmd = "make -f Makefile.mac prefix=#{prefix}"
+ inreplace 'Makefile' do |s|
+ s.change_make_var! 'mandir', man
+ end
+ make_cmd = "make prefix=#{prefix}"
system "#{make_cmd} && #{make_cmd} install"
end
end