2024-01-24 20:17:19 +01:00
|
|
|
# Clone Upstream
|
|
|
|
mkdir -p ./pika-installer-gtk4
|
|
|
|
rsync -av --progress ./* ./pika-installer-gtk4 --exclude ./pika-installer-gtk4
|
|
|
|
cd ./pika-installer-gtk4
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
2024-02-20 21:22:11 +01:00
|
|
|
apt-get install curl -y
|
2024-02-20 21:20:10 +01:00
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
2024-01-24 20:17:19 +01:00
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|