mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt vkd3d to updater-vkd3d-1.17 * updater-vkd3d-1.17: Build Run on linux/amd64. * updater-vkd3d-1.17: Package File Update Run on linux/amd64 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
32 lines
917 B
Ruby
32 lines
917 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Vkd3d < Autotools
|
|
description 'Vkd3d is a 3D graphics library built on top of Vulkan. It has an API very similar, but not identical, to Direct3D 12.'
|
|
homepage 'https://wiki.winehq.org/Vkd3d/'
|
|
version '1.17'
|
|
license 'LGPL-2.1'
|
|
compatibility 'x86_64'
|
|
source_url 'https://gitlab.winehq.org/wine/vkd3d.git'
|
|
git_hashtag "vkd3d-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
x86_64: 'e165921a54201ad2c300ce92f939780969f86c240993fd0828ebb55cc8196c2b'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libxcb' => :build
|
|
depends_on 'ncurses' # R
|
|
depends_on 'perl_json' => :build
|
|
depends_on 'spirv_headers' => :build
|
|
depends_on 'spirv_tools' # R
|
|
depends_on 'vulkan_headers' => :build
|
|
depends_on 'vulkan_icd_loader' => :build
|
|
depends_on 'wine' => :build
|
|
|
|
no_lto
|
|
|
|
autotools_configure_options '--with-xcb \
|
|
--with-spirv-tools'
|
|
end
|