class Glew < Formula homepage "http://glew.sourceforge.net/" url "https://downloads.sourceforge.net/project/glew/glew/1.12.0/glew-1.12.0.tgz" sha256 "af58103f4824b443e7fa4ed3af593b8edac6f3a7be3b30911edbc7344f48e4bf" bottle do cellar :any sha256 "4c8befbf2493fa5491e64cf6e6e0db3d8ca876ab31f742af6ad0f7a5548d8e7c" => :yosemite sha256 "b5b97f390fd241729c5023941e34378bb3e3c2d64825370fcd5845e3d226ae0d" => :mavericks sha256 "ad52c4946186b87fd290833e3b7c68287316f5dc8a2c96f662478a403697bb4f" => :mountain_lion end option :universal def install # Makefile directory race condition on lion ENV.deparallelize if build.universal? ENV.universal_binary # Do not strip resulting binaries; https://sourceforge.net/p/glew/bugs/259/ ENV["STRIP"] = "" end inreplace "glew.pc.in", "Requires: @requireslib@", "" system "make", "GLEW_PREFIX=#{prefix}", "GLEW_DEST=#{prefix}", "all" system "make", "GLEW_PREFIX=#{prefix}", "GLEW_DEST=#{prefix}", "install.all" end test do assert_match /#{version}/, shell_output("#{bin}/glewinfo") end end