mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 09:11:50 -05:00
Jenkins: Restore library version readme, to be stored in the AppImage filesystem
This commit is contained in:
parent
08e2761ba6
commit
83d9c5276f
1 changed files with 11 additions and 0 deletions
11
.ci/build.sh
11
.ci/build.sh
|
@ -413,6 +413,17 @@ then
|
|||
# TBD
|
||||
:
|
||||
else
|
||||
# Archive readme with library package versions.
|
||||
echo Libraries used to compile this $arch build of $project: > archive_tmp/README
|
||||
dpkg-query -f '${Package} ${Version}\n' -W $libpkgs | sed "s/-dev / /" | sed "s/qtdeclarative/qt/" | while IFS=" " read pkg version
|
||||
do
|
||||
for i in $(seq $(expr $longest_libpkg - $(echo -n $pkg | wc -c)))
|
||||
do
|
||||
echo -n " " >> archive_tmp/README
|
||||
done
|
||||
echo $pkg $version >> archive_tmp/README
|
||||
done
|
||||
|
||||
# Archive icon, while also shrinking it to 512x512 if necessary.
|
||||
convert src/win/assets/$project_lower.png -resize '512x512>' icon.png
|
||||
icon_base="$(identify -format 'archive_tmp/usr/share/icons/%wx%h' icon.png)"
|
||||
|
|
Loading…
Reference in a new issue