homebrew-core/Formula/libva.rb

55 lines
1.6 KiB
Ruby

class Libva < Formula
desc "Hardware accelerated video processing library"
homepage "https://github.com/intel/libva"
url "https://github.com/intel/libva/releases/download/2.13.0/libva-2.13.0.tar.bz2"
sha256 "fad383f39f36115814bd0eda1496a4cc01761643bd962635400df2d4470ad460"
license "MIT"
livecheck do
url :stable
strategy :github_latest
end
bottle do
sha256 cellar: :any_skip_relocation, x86_64_linux: "b8643a1050cbafaaab1fe471550a54aefefcc7169cffdbd42046df4e18b0db0d"
end
depends_on "pkg-config" => [:build, :test]
depends_on "libdrm"
depends_on "libx11"
depends_on "libxext"
depends_on "libxfixes"
depends_on :linux
depends_on "wayland"
def install
system "./configure", "--prefix=#{prefix}",
"--sysconfdir=#{etc}",
"--localstatedir=#{var}",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--enable-drm",
"--enable-x11",
"--disable-glx",
"--enable-wayland"
system "make"
system "make", "install"
end
test do
%w[libva libva-drm libva-wayland libva-x11].each do |name|
assert_match "-I#{include}", shell_output("pkg-config --cflags #{name}")
end
(testpath/"test.c").write <<~EOS
#include <va/va.h>
int main(int argc, char *argv[]) {
VADisplay display;
vaDisplayIsValid(display);
return 0;
}
EOS
system ENV.cc, "test.c", "-o", "test", "-I#{include}", "-L#{lib}", "-lva"
system "./test"
end
end