blob: 40d287f0302dcdac8124d01f6b723caf55c88f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Jam < Formula
  homepage 'http://www.perforce.com/jam/jam.html'
  url 'ftp://ftp.perforce.com/jam/jam-2.5.zip'
  sha1 '794a3f4483315c6b9f010f03b592646d3815328c'
  def install
    system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
    bin.install "bin.macosx/jam", "bin.macosx/mkjambase"
  end
end
  |