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.16.0/libva-2.16.0.tar.bz2"
sha256 "115faca0db2c417a37da49830870e260450fa13066f5e24e252a20c36d920a1c"
license "MIT"
livecheck do
url :stable
strategy :github_latest
end
bottle do
sha256 cellar: :any_skip_relocation, x86_64_linux: "92709fe5f7c72fafee362eb1ea09e541966b0f42765815966e72f2a8f792e7fe"
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