2023-04-30 19:37:23 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
2023-06-16 20:22:42 +02:00
|
|
|
|
2023-04-30 19:37:23 +02:00
|
|
|
# Clone Upstream
|
2024-02-25 20:53:47 +01:00
|
|
|
git clone https://github.com/nowrep/obs-vkcapture -b v1.4.9
|
2023-04-30 19:37:23 +02:00
|
|
|
cp -rvf ./debian ./obs-vkcapture/
|
|
|
|
cd ./obs-vkcapture
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|