2023-06-23 14:20:53 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Clone Upstream
|
2024-04-04 19:32:08 +02:00
|
|
|
git clone --recurse-submodules https://github.com/lutris/lutris.git
|
2023-06-23 14:25:16 +02:00
|
|
|
cd lutris
|
2024-04-04 19:12:48 +02:00
|
|
|
git checkout fix-no-column-named-hidden-error
|
2023-06-23 14:25:16 +02:00
|
|
|
cp -rvf ../debian ./
|
2023-06-23 14:20:53 +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/
|