homebrew-core/Formula/glfw.rb
Bruce Mitchener edacb69929 GLFW 2.7.9
Closes Homebrew/homebrew#20847.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-27 08:06:54 -07:00

14 lines
352 B
Ruby

require 'formula'
class Glfw < Formula
homepage 'http://www.glfw.org/'
url 'http://sourceforge.net/projects/glfw/files/glfw/2.7.9/glfw-2.7.9.zip'
sha1 '9356f4e2f50466ec0fff81497ce560d6007474b9'
option :universal
def install
ENV.universal_binary if build.universal?
system 'make', "PREFIX=#{prefix}", 'cocoa-dist-install'
end
end