switcheroo-control/main.sh

22 lines
476 B
Bash
Raw Normal View History

2023-09-30 10:04:08 +02:00
#! /bin/bash
DEBIAN_FRONTEND=noninteractive
# Clone Upstream
2023-09-30 10:05:34 +02:00
git clone https://gitlab.freedesktop.org/hadess/switcheroo-control -b 2.6
cp -rvf ./debian ./switcheroo-control/
cd ./switcheroo-control
for i in ../patches/* ; do echo "Applying Patch: $i" && patch -Np1 -i $i || echo "Applying Patch $i Failed!"; done
2023-09-30 10:04:08 +02:00
# 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/