class Mesa < Formula include Language::Python::Virtualenv desc "Graphics Library" homepage "https://www.mesa3d.org/" url "https://mesa.freedesktop.org/archive/mesa-19.1.3.tar.xz" sha256 "845460b2225d15c15d4a9743dec798ff0b7396b533011d43e774e67f7825b7e0" head "https://gitlab.freedesktop.org/mesa/mesa.git" bottle do sha256 "fa882a4fbbba5b9a9994a23c6e1edec6d14b129ab9b35fe6fc9c38089461820e" => :mojave sha256 "ff9e2acbd6330751e0eb48e7727b27975183495304f81d3a5f4ac0999ea67212" => :high_sierra sha256 "1a46a5db7835297a1a1153a81e25872bddd25d1ea1f8b6144ce44e285f6e633e" => :sierra end depends_on "meson-internal" => :build depends_on "ninja" => :build depends_on "pkg-config" => :build depends_on "python@2" => :build depends_on "freeglut" => :test depends_on "expat" depends_on "gettext" depends_on :x11 resource "Mako" do url "https://files.pythonhosted.org/packages/f9/93/63f78c552e4397549499169198698de23b559b52e57f27d967690811d16d/Mako-1.0.10.tar.gz" sha256 "7165919e78e1feb68b4dbe829871ea9941398178fa58e6beedb9ba14acf63965" end resource "gears.c" do url "https://www.opengl.org/archives/resources/code/samples/glut_examples/mesademos/gears.c" sha256 "7df9d8cda1af9d0a1f64cc028df7556705d98471fdf3d0830282d4dcfb7a78cc" end def install ENV.prepend_create_path "PYTHONPATH", buildpath/"vendor/lib/python2.7/site-packages" resource("Mako").stage do system "python", *Language::Python.setup_install_args(buildpath/"vendor") end resource("gears.c").stage(pkgshare.to_s) mkdir "build" do system "meson", "--prefix=#{prefix}", "-D buildtype=plain", "-D b_ndebug=true", ".." system "ninja" system "ninja", "install" end end test do system ENV.cc, "#{pkgshare}/gears.c", "-o", "gears", "-L#{lib}", "-I#{Formula["freeglut"].opt_include}", "-L#{Formula["freeglut"].opt_lib}", "-lgl", "-lglut" end end