Skip to content

Commit

Permalink
Add QMLTermWidget
Browse files Browse the repository at this point in the history
  • Loading branch information
Seshpenguin committed Nov 21, 2023
1 parent c84c29b commit 7177744
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/os-variants/mobile/mobile-dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ export async function buildMobileDev() {
${checkoutBranches.map(([repo, branch]) => `cd /opt/kde/src/${repo} && git checkout ${branch} && git pull --rebase && cd /opt/kde/src/kdesrc-build`).join("; ")}
${packagesToBuild.split(" ").map((p, i, a) => `./kdesrc-build --stop-on-failure --no-include-dependencies --no-src ${p}; echo "-- ✅ Built ${i} of ${a.length}!"`).join("; ")}
EOFSU
sleep 2
EOF`);
Expand Down Expand Up @@ -243,6 +244,14 @@ EOF`);
# Pinephone Pro Firmware
pacman -S --noconfirm brcm-firmware alsa-ucm-pinephonepro` : ''}
echo "Compiling QMLTermWidget"
cd /tmp
git clone https://invent.kde.org/jbbgameich/qmltermwidget.git
cd qmltermwidget
cmake -B build && cmake --build build
sudo cmake --install build
cd ..
EOF`);

// unmount cache folder
Expand Down

0 comments on commit 7177744

Please sign in to comment.