aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jam.rb
diff options
context:
space:
mode:
authorbalr0g2014-08-27 16:48:33 -0400
committerJack Nagel2014-08-29 00:00:34 -0500
commit531dae0f7104028cbb89b04d6cfd1ebad4cf8266 (patch)
treedda1f7768cd54a6242c75260abe8078c940638ce /Library/Formula/jam.rb
parenta0231d76646efd7ee3ea0c5cdf0672b0a2600085 (diff)
downloadhomebrew-531dae0f7104028cbb89b04d6cfd1ebad4cf8266.tar.bz2
jam 2.6
Closes #31932. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/jam.rb')
-rw-r--r--Library/Formula/jam.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/jam.rb b/Library/Formula/jam.rb
index 76449b0d2..6a2bfd054 100644
--- a/Library/Formula/jam.rb
+++ b/Library/Formula/jam.rb
@@ -2,13 +2,14 @@ require 'formula'
class Jam < Formula
homepage 'http://www.perforce.com/resources/documentation/jam'
- url 'ftp://ftp.perforce.com/jam/jam-2.5.zip'
- sha1 '794a3f4483315c6b9f010f03b592646d3815328c'
+ url 'https://swarm.workshop.perforce.com/projects/perforce_software-jam/download/main/jam-2.6.zip',
+ :using => :ssl3
+ sha1 'e6d2f909798fad32f3bd7c08699265f82b05b526'
conflicts_with 'ftjam', :because => 'both install a `jam` binary'
def install
- system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
- bin.install "bin.macosx/jam", "bin.macosx/mkjambase"
+ system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "LOCATE_TARGET=bin"
+ bin.install "bin/jam", "bin/mkjambase"
end
end