2023-02-25 14:08:00 +01:00
|
|
|
# Clone Upstream
|
2023-09-18 15:14:24 +02:00
|
|
|
git clone https://github.com/Plagman/gamescope
|
2023-02-25 14:08:00 +01:00
|
|
|
cp -rvf ./debian ./gamescope
|
|
|
|
cd ./gamescope
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-09-18 15:14:24 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p gamescope_3.12.5-release
|
2023-07-15 15:30:49 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-02-25 14:08:00 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|