Files
chromebrew/packages/libva_utils.rb
2022-12-01 10:41:50 -06:00

38 lines
1.6 KiB
Ruby

require 'package'
class Libva_utils < Package
description 'Libva-utils is a collection of tests for VA-API (VIdeo Acceleration API)'
homepage 'https://01.org/linuxmedia'
@_ver = '2.11.1'
version @_ver
license 'MIT'
compatibility 'all'
source_url "https://github.com/intel/libva-utils/archive/refs/tags/#{@_ver}.tar.gz"
source_sha256 '0c1eb7f717e391d00da74c53a9fe5caf3d6c510dcd35bac7f71a0e59ad1b8d26'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libva_utils/2.11.1_armv7l/libva_utils-2.11.1-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libva_utils/2.11.1_armv7l/libva_utils-2.11.1-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libva_utils/2.11.1_i686/libva_utils-2.11.1-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libva_utils/2.11.1_x86_64/libva_utils-2.11.1-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: '96b6472a638dc5b6269460b49ff4dab1063b7a9227a07cef8aa2aea5bb7d14f1',
armv7l: '96b6472a638dc5b6269460b49ff4dab1063b7a9227a07cef8aa2aea5bb7d14f1',
i686: '4e89b693c082deaab2c675597818eafbcec899d2dcaf59d4bf9a8b947c71d9ff',
x86_64: '2a2f1a713b00c8a14aeacb73f2cfb599f54cd147d02a001eb99f456fd859e17c'
})
depends_on 'libva'
def self.build
system "meson setup #{CREW_MESON_OPTIONS} builddir"
system 'meson configure builddir'
system 'ninja -C builddir'
end
def self.install
system "DESTDIR=#{CREW_DEST_DIR} ninja -C builddir install"
end
end