22 lines
553 B
Bash
Executable File
22 lines
553 B
Bash
Executable File
# Add dependent repositories
|
|
wget -q -O - https://ppa.pika-os.com/key.gpg | sudo apt-key add -
|
|
add-apt-repository https://ppa.pika-os.com
|
|
add-apt-repository ppa:pikaos/pika
|
|
add-apt-repository ppa:kubuntu-ppa/backports
|
|
# Clone Upstream
|
|
git clone https://github.com/Plagman/gamescope -b 3.12.0-beta3
|
|
cp -rvf ./debian ./gamescope
|
|
cd ./gamescope
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p gamescope_3.11.52
|
|
dpkg-buildpackage
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|