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
+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/
}