aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-07-19 09:41:55 -0500
committerJack Nagel2014-07-19 09:41:55 -0500
commit38a1e0563ea4084611b9637efd561cb9007def9c (patch)
treec740e1ca3bb088490261b4a69e1163df42e98971 /Library/Formula
parent0005b34ed3276f71f0cc89806423c5c7b6374034 (diff)
downloadhomebrew-38a1e0563ea4084611b9637efd561cb9007def9c.tar.bz2
fio 2.1.11
Closes #30916. Closes #30943.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fio.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/fio.rb b/Library/Formula/fio.rb
index e59300db8..cb5ac5e4f 100644
--- a/Library/Formula/fio.rb
+++ b/Library/Formula/fio.rb
@@ -1,15 +1,16 @@
-require 'formula'
+require "formula"
class Fio < Formula
- homepage 'http://freecode.com/projects/fio'
- url 'http://brick.kernel.dk/snaps/fio-2.0.15.tar.bz2'
- sha1 '3b672f19ef37d0f4d733dc78820a5e4a735b9a7f'
+ homepage "http://freecode.com/projects/fio"
+ url "http://brick.kernel.dk/snaps/fio-2.1.11.tar.bz2"
+ sha1 "3a9e82477f29155fab531cb9d527469fef85042b"
def install
system "./configure"
# fio's CFLAGS passes vital stuff around, and crushing it will break the build
system "make", "prefix=#{prefix}",
"mandir=#{man}",
+ "sharedir=#{share}",
"CC=#{ENV.cc}",
"V=true", # get normal verbose output from fio's makefile
"install"