mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-09-14 19:44:08 +08:00
Perform qtwayland5 compilation within dockerfile (#192)
* separate out qtwayland5 compilation * qt5-qmake qtbase5-dev qtbase5-dev-tools already in qt5-default --------- Co-authored-by: Justin Newberry <justin@comma.ai>
This commit is contained in:
Executable
+19
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
# Patched qtwayland that outputs a fixed screen size
|
||||
# Clone qtwayland submodule, checkout 5.12.9 (5.12.8 leaks timers, see https://bugreports.qt.io/browse/QTBUG-82914), apply patch, qmake, make
|
||||
|
||||
cd /tmp
|
||||
git clone --branch v5.12.9 https://github.com/qt/qtwayland.git
|
||||
cd qtwayland
|
||||
|
||||
git apply /tmp/agnos/patch
|
||||
|
||||
mkdir /tmp/build && cd /tmp/build
|
||||
qmake /tmp/qtwayland
|
||||
|
||||
export MAKEFLAGS="-j$(nproc)"
|
||||
make
|
||||
|
||||
checkinstall -yD --install=no --pkgversion="5.12.8" --pkgname=qtwayland5 --pkgarch=arm64 --replaces=qtwayland5,libqt5waylandclient5,libqt5waylandcompositor5
|
||||
mv qtwayland5*.deb /tmp/qtwayland5.deb
|
||||
@@ -1,4 +1,2 @@
|
||||
libffi.so.6 filter=lfs diff=lfs merge=lfs -text
|
||||
libqwayland-egl.so filter=lfs diff=lfs merge=lfs -text
|
||||
libwayland-client.so.0 filter=lfs diff=lfs merge=lfs -text
|
||||
libQt5WaylandClient.so.5.12.8 filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:450f3b0ab9edad9492d3b28c66472c45226db6f9634e45de439597812388baa4
|
||||
size 21755080
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b5e91958eaa99e98adebc2778d6f30505f913ef279a25b02c21b1e21ecb11b4c
|
||||
size 1923864
|
||||
Reference in New Issue
Block a user