diff options
| author | Andrew Marshall | 2010-10-30 17:31:44 -0400 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-10-30 14:44:12 -0700 | 
| commit | 626dfbed185f165c0c2b90f329e9b5cea171ef79 (patch) | |
| tree | c228b57c4485e18aff14dcf021b78dabb9edfb30 /Library/Formula/phoronix-test-suite.rb | |
| parent | 487ab16e360c98d10f8799ad3bd7915f2b13dffe (diff) | |
| download | homebrew-626dfbed185f165c0c2b90f329e9b5cea171ef79.tar.bz2 | |
Use official stable release for Phoronix
Using the latest HEAD from the git repository is volatile, as, firstly,
it's not a stable release and as such may have bugs with it. Secondly,
it's possible an update will break the formula unexpectedly. In fact,
this did happen and is the purpose of this commit, an update broke this
formula's patch of the install.sh file.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/phoronix-test-suite.rb')
| -rw-r--r-- | Library/Formula/phoronix-test-suite.rb | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/phoronix-test-suite.rb b/Library/Formula/phoronix-test-suite.rb index d1b27be10..528a80fd7 100644 --- a/Library/Formula/phoronix-test-suite.rb +++ b/Library/Formula/phoronix-test-suite.rb @@ -1,17 +1,18 @@  require 'formula'  class PhoronixTestSuite <Formula -  head 'http://www.phorogit.com/repo/phoronix-test-suite.git', :using => :git    homepage 'http://www.phoronix-test-suite.com/' +  url "http://www.phoronix-test-suite.com/download.php?file=phoronix-test-suite-2.8.1" +  md5 "623d0ea01963df438f738ec50e90afc6" -  def patches -    DATA -  end +  def patches; DATA; end    def install      system "./install-sh #{prefix}"    end  end + +  __END__  diff --git a/install-sh b/install-sh  index 596dfae..c83ebe2 100755  | 
