mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gmmlib -> 22.10.0 in updater-gmmlib-22.10.0 * updater-gmmlib-22.10.0: Package File Update Run on linux/amd64 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
774 B
Ruby
23 lines
774 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.10.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: '90d74981309f7656d9ccd1707d5e6df67bcadec46b4c721c8b4336bf39781546'
|
|
})
|
|
|
|
depends_on 'gcc_lib' => :library
|
|
depends_on 'glibc' => :library
|
|
depends_on 'libva' => :build
|
|
|
|
cmake_options '-DCMAKE_POLICY_VERSION_MINIMUM=3.5.0 -DRUN_TEST_SUITE=OFF'
|
|
end
|