homebrew-core/Formula/mesa.rb
BrewTestBot 6a7bdd05fb
mesa: update 18.3.2 bottle.
Closes #36118.

Signed-off-by: Claudia <claui@users.noreply.github.com>
2019-01-18 00:53:03 +01:00

53 lines
1.9 KiB
Ruby

class Mesa < Formula
include Language::Python::Virtualenv
desc "Graphics Library"
homepage "https://www.mesa3d.org/"
url "https://mesa.freedesktop.org/archive/mesa-18.3.2.tar.xz"
sha256 "f7ce7181c07b6d8e0132da879af1729523a6c8aa87f79a9d59dfd064024cfb35"
head "https://gitlab.freedesktop.org/mesa/mesa.git"
bottle do
sha256 "40a1b6f475f21030c0939f9af76d687079da0ad7d529d4f0e90bbd00143f3c2d" => :mojave
sha256 "382b33301884fac04ab574e7835a5246239d3b24c2ef149ce96bcae1f4df3e7c" => :high_sierra
sha256 "aba57499c1b4c2cabbb9cea1cb494981bd7d2b4aa81d9d004fbd0220517c3b17" => :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/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz"
sha256 "4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae"
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