Update package version to 1.4.329

This commit is contained in:
2025-10-10 18:33:48 +03:00
parent 763faafe2c
commit c4c74c253e
2 changed files with 6 additions and 10 deletions
+4 -7
View File
@@ -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
}