aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vmalloc.rb
diff options
context:
space:
mode:
authorJack Nagel2014-12-09 20:45:14 -0500
committerJack Nagel2014-12-09 21:18:01 -0500
commitb53223a45cef4d7dad7c2ebae7988fe4001b0579 (patch)
tree465d254b0c71fbd8a95922dbcfb66d1fa0f0347c /Library/Formula/vmalloc.rb
parentbaa1954c33088dc7dce524dcef496d94e3f2398d (diff)
downloadhomebrew-b53223a45cef4d7dad7c2ebae7988fe4001b0579.tar.bz2
Pull strategy for downloading from research.att.com into core
Diffstat (limited to 'Library/Formula/vmalloc.rb')
-rw-r--r--Library/Formula/vmalloc.rb16
1 files changed, 2 insertions, 14 deletions
diff --git a/Library/Formula/vmalloc.rb b/Library/Formula/vmalloc.rb
index af019b124..30b2eb03d 100644
--- a/Library/Formula/vmalloc.rb
+++ b/Library/Formula/vmalloc.rb
@@ -1,21 +1,9 @@
require 'formula'
-class VmallocDownloadStrategy < CurlDownloadStrategy
- # downloading from AT&T requires using the following credentials
- def credentials
- 'I accept www.opensource.org/licenses/cpl:.'
- end
-
- def curl(*args)
- args << '--user' << credentials
- super
- end
-end
-
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',
- :using => VmallocDownloadStrategy
+ :using => AttResearchDownloadStrategy
sha1 '13e45960831226b2b2ac93cdbe23d1d4c6e7eb38'
version '2005-02-01'
@@ -38,7 +26,7 @@ class Vmalloc < Formula
end
def caveats; <<-EOS.undent
- We agreed to the OSI Common Public License Version 1.0 for you.
+ We agreed to the Eclipse Public License 1.0 for you.
If this is unacceptable you should uninstall.
EOS
end