homebrew-core/Formula/jam.rb
Larry Gilbert e8ce423551 jam: update homepage URL
Closes Homebrew/homebrew#24098.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-09 21:46:44 -08:00

14 lines
410 B
Ruby

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'
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"
end
end