🔒 Repository is read-only – file editing is disabled.

recipes/utils/vulkan-headers/PAGBUILD.yaml main

29 linii Raw ← Powrót
1234567891011121314151617181920212223242526272829
pkgname: vulkan-headers
pkgver: '1.4.360'
pkgrel: 1
pkgdesc: Vulkan header files
url: 'https://github.com/KhronosGroup/Vulkan-Headers'
arch: x86_64
license:
- MIT Apache-2.0
depends: []
makedepends:
- git
- cmake
- ninja
source:
- 'https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v${pkgver}.tar.gz'
sha256sums:
- SKIP
build: |
  mkdir build
  cd build

  cmake -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_BUILD_TYPE=Release \
        ../Vulkan-Headers-${pkgver} \
        -G Ninja
  ninja
  DESTDIR=${PKGDIR} ninja install
package: |
  true