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

class Glfw < Formula
  url 'http://downloads.sourceforge.net/project/glfw/glfw/2.7.2/glfw-2.7.2.tar.bz2'
  homepage 'http://www.glfw.org/'
  md5 'bb4f33b43e40f8cd3015a653dca02ed1'

  def install
    ENV.prepend 'PREFIX', "#{prefix}"
    system "make cocoa-install"
  end
end