2023-04-30 19:37:23 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
# Add dependent repositories
|
2023-04-30 19:56:03 +02:00
|
|
|
sudo dpkg --add-architecture i386
|
2023-04-30 19:37:23 +02:00
|
|
|
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/nowrep/obs-vkcapture
|
|
|
|
cp -rvf ./debian ./obs-vkcapture/
|
|
|
|
cd ./obs-vkcapture
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get install build-essential -y
|
|
|
|
apt-get install crossbuild-essential-i386 lib32gcc-11-dev -y
|
|
|
|
apt-get build-dep ./ -y -a i386
|
|
|
|
|
|
|
|
# Build package
|
2023-05-02 00:38:50 +02:00
|
|
|
dpkg-buildpackage -a i386 --no-sign
|
2023-04-30 19:37:23 +02:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|