diff options
| author | Jack Nagel | 2014-12-09 20:49:55 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-09 21:18:01 -0500 |
| commit | 62ee328784af2dfcca1da2ec85cf4be947d2c192 (patch) | |
| tree | 15cf4975ae7df6845bd325ed1bde062dc89b6c04 /Library/Formula/vmalloc.rb | |
| parent | b53223a45cef4d7dad7c2ebae7988fe4001b0579 (diff) | |
| download | homebrew-62ee328784af2dfcca1da2ec85cf4be947d2c192.tar.bz2 | |
vmalloc 2013-05-31
Diffstat (limited to 'Library/Formula/vmalloc.rb')
| -rw-r--r-- | Library/Formula/vmalloc.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/vmalloc.rb b/Library/Formula/vmalloc.rb index 30b2eb03d..1fe0987db 100644 --- a/Library/Formula/vmalloc.rb +++ b/Library/Formula/vmalloc.rb @@ -1,17 +1,17 @@ -require 'formula' +require "formula" class Vmalloc < Formula - homepage 'http://www2.research.att.com/sw/download/' - url 'http://www2.research.att.com/~gsf/download/tgz/vmalloc.2005-02-01.tgz', + homepage "http://www2.research.att.com/sw/download/" + url "http://www2.research.att.com/~astopen/download/tgz/vmalloc.2013-05-31.tgz", :using => AttResearchDownloadStrategy - sha1 '13e45960831226b2b2ac93cdbe23d1d4c6e7eb38' - version '2005-02-01' + sha1 "c656a820503c2f6e7ec19d6b42f2fa0fcefc33b0" + version "2013-05-31" def install # Vmalloc makefile does not work in parallel mode ENV.deparallelize # override Vmalloc makefile flags - inreplace Dir['src/**/Makefile'] do |s| + inreplace Dir["src/**/Makefile"] do |s| s.change_make_var! "CC", ENV.cc s.change_make_var! "CXFLAGS", ENV.cflags s.change_make_var! "CCMODE", "" @@ -20,9 +20,9 @@ class Vmalloc < Formula system "/bin/sh ./Runmake" # install manually # put all includes into a directory of their own - (include + "vmalloc").install Dir['include/*.h'] - lib.install Dir['lib/*.a'] - man.install 'man/man3' + (include + "vmalloc").install Dir["include/*.h"] + lib.install Dir["lib/*.a"] + man.install "man/man3" end def caveats; <<-EOS.undent |
