Update package version to 1.4.328.1

This commit is contained in:
2025-10-10 18:17:36 +03:00
parent 9d6ae64467
commit b84eee5daa
2 changed files with 21 additions and 24 deletions
+14 -3
View File
@@ -1,9 +1,20 @@
name: spirv-tools name: spirv-tools
description: API and commands for processing SPIR-V modules description: API and commands for processing SPIR-V modules
version: 1.4.321.0 version: 1.4.328.1
revision: 1
url: https://www.khronos.org/vulkan/ url: https://www.khronos.org/vulkan/
license: Apache2.0 license: Apache2.0
architecture: any architecture: any
depends: ["gcc-libs", "bash"]
make_depends: ["cmake", "ninja", "meson", "python3", "spirv-headers"]
type: source type: source
depends:
- gcc-libs
- bash
make_depends:
- cmake
- python3
- spirv-headers
downloads:
- url: https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/tags/vulkan-sdk-${BPM_PKG_VERSION}/SPIRV-Tools-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: d00dc47df7163c2bacd70f090441e8fad96234f0e3b96c54ee9091a49e627adb
+7 -21
View File
@@ -2,44 +2,30 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/tags/vulkan-sdk-${BPM_PKG_VERSION}/SPIRV-Tools-${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
mkdir build cmake -B build \
cd build -DCMAKE_INSTALL_PREFIX=/usr \
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DSPIRV_WERROR=OFF \ -DSPIRV_WERROR=OFF \
-DBUILD_SHARED_LIBS=ON \ -DBUILD_SHARED_LIBS=ON \
-DSPIRV_TOOLS_BUILD_STATIC=OFF \ -DSPIRV_TOOLS_BUILD_STATIC=OFF \
-DSPIRV-Headers_SOURCE_DIR=/usr \ -DSPIRV-Headers_SOURCE_DIR=/usr
-G Ninja .. cmake --build build
ninja
} }
# The check function is executed in the source directory # The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly # This function is used to run tests to verify the package has been compiled correctly
check() { check() {
cd build ctest --test-dir build
ninja test
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
cd build DESTDIR="$BPM_OUTPUT" cmake --install build
DESTDIR="$BPM_OUTPUT" ninja install
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/spirv-tools/LICENSE install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/spirv-tools/LICENSE
} }