8dc451e3e2
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
359 B
Ruby
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
|