homebrew-core/Formula/glfw.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

14 lines
359 B
Ruby

require 'formula'
class Glfw < Formula
homepage 'http://www.glfw.org/'
url 'http://downloads.sourceforge.net/project/glfw/glfw/2.7.9/glfw-2.7.9.tar.bz2'
sha1 '50ffcbfa1fb47d23aa6ad1245da329bd21bbaeca'
option :universal
def install
ENV.universal_binary if build.universal?
system 'make', "PREFIX=#{prefix}", 'cocoa-dist-install'
end
end