From c4c74c253e473cd26ccd4f13ea2d6946add12807 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 10 Oct 2025 18:33:48 +0300 Subject: [PATCH] Update package version to 1.4.329 --- pkg.info | 5 ++--- source.sh | 11 ++++------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/pkg.info b/pkg.info index c5c2bd2..fd2933b 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,6 @@ name: vulkan-headers description: Vulkan header files -version: 1.4.328 +version: 1.4.329 revision: 1 url: https://www.khronos.org/vulkan/ license: Apache2 or MIT @@ -9,9 +9,8 @@ output_architecture: any type: source make_depends: - cmake - - ninja downloads: - url: https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v${BPM_PKG_VERSION}/Vulkan-Headers-${BPM_PKG_VERSION}.tar.gz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: 3ad56d387179b47dd632432ccf989bbb69773e1d732692b7bbad9c4d36aa1304 + checksum: 7ea67aabccdecc6ef616b4c243f563ac9bca945a63d4f4cca21f1bbcd828b18e diff --git a/source.sh b/source.sh index 0a35578..a14b7d7 100644 --- a/source.sh +++ b/source.sh @@ -5,18 +5,15 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - mkdir build - cd build - - cmake -DCMAKE_INSTALL_PREFIX=/usr -G Ninja .. - ninja + cmake -B build -DCMAKE_INSTALL_PREFIX=/usr + cmake --build build } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - cd build - DESTDIR="$BPM_OUTPUT" ninja install + DESTDIR="$BPM_OUTPUT" cmake --install build + # Install package license install -Dm644 "$BPM_SOURCE"/LICENSES/MIT.txt "$BPM_OUTPUT"/usr/share/licenses/vulkan-headers/MIT.txt }