aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/glfw.rb
blob: c1f919e6a3b6455c02ae28fdc41a2b5d55a88928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Glfw < Formula
  homepage 'http://www.glfw.org/'
  url 'http://sourceforge.net/projects/glfw/files/glfw/2.7.8/glfw-2.7.8.zip'
  sha1 'b4f51221ffed0a064bb413074544a530ae2751ec'

  option :universal

  def install
    ENV.universal_binary if build.universal?
    system 'make', "PREFIX=#{prefix}", 'cocoa-dist-install'
  end
end