Symlink user-facing tools to usr/bin
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
name: qt6-base
|
name: qt6-base
|
||||||
description: Cross-platform application development framework for creating graphical user interfaces
|
description: Cross-platform application development framework for creating graphical user interfaces
|
||||||
version: 6.10.1
|
version: 6.10.1
|
||||||
revision: 2
|
revision: 3
|
||||||
url: https://www.qt.io/
|
url: https://www.qt.io/
|
||||||
license: FDL,GPL3,LGPL3,custom
|
license: FDL,GPL3,LGPL3,custom
|
||||||
architecture: any
|
architecture: any
|
||||||
|
|||||||
@@ -41,6 +41,13 @@ build() {
|
|||||||
package() {
|
package() {
|
||||||
DESTDIR="$BPM_OUTPUT" cmake --install build
|
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 package licenses
|
||||||
install -Dm644 "$BPM_SOURCE"/LICENSES/* -t "$BPM_OUTPUT"/usr/share/licenses/qt6-base/
|
install -Dm644 "$BPM_SOURCE"/LICENSES/* -t "$BPM_OUTPUT"/usr/share/licenses/qt6-base/
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user