2023-03-03 17:16:13 +01:00
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Clone Upstream
|
2023-07-15 14:01:42 +02:00
|
|
|
git clone https://github.com/PikaOS-linux/gamescope-session
|
2023-04-27 12:46:02 +02:00
|
|
|
cp -rvf ./debian ./gamescope-session
|
2023-03-03 17:16:13 +01:00
|
|
|
cd ./gamescope-session
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-07-15 14:01:42 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-03 17:16:13 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|