mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* libdrm => 2.4.125 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to branch gmmlib. * Add built packages for linux/arm/v7 to branch gmmlib. * gmmlib => 22.8.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to branch gmmlib. * Intel Media Driver => 25.2.6 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to branch gmmlib. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
23 lines
757 B
Ruby
23 lines
757 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Gmmlib < CMake
|
|
description 'The Intel(R) Graphics Memory Management Library provides device specific and buffer management for the Intel(R) Graphics Compute Runtime for OpenCL(TM) and the Intel(R) Media Driver for VAAPI.'
|
|
homepage 'https://github.com/intel/gmmlib/'
|
|
version '22.8.0'
|
|
license 'MIT'
|
|
compatibility 'x86_64'
|
|
source_url 'https://github.com/intel/gmmlib.git'
|
|
git_hashtag "intel-gmmlib-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
x86_64: '73424ec04dfc569e9d25df63719251af95b38aec3b840b9972fa951f3fdb051c'
|
|
})
|
|
|
|
depends_on 'libva' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
|
|
cmake_options '-DCMAKE_POLICY_VERSION_MINIMUM=3.5.0 -DRUN_TEST_SUITE=OFF'
|
|
end
|