Symlink user-facing tools to usr/bin

This commit is contained in:
2026-01-05 10:07:24 +02:00
parent 86fdcda8a6
commit 2142d421af
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
name: qt6-base
description: Cross-platform application development framework for creating graphical user interfaces
version: 6.10.1
revision: 2
revision: 3
url: https://www.qt.io/
license: FDL,GPL3,LGPL3,custom
architecture: any
+7
View File
@@ -41,6 +41,13 @@ build() {
package() {
DESTDIR="$BPM_OUTPUT" cmake --install build
# Symlink user-facing tools
cd "$BPM_OUTPUT"
install -d usr/bin
while read tool; do
ln -s $tool
done < "$BPM_SOURCE"/build/user_facing_tool_links.txt
# Install package licenses
install -Dm644 "$BPM_SOURCE"/LICENSES/* -t "$BPM_OUTPUT"/usr/share/licenses/qt6-base/
}