2023-06-23 14:20:53 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Clone Upstream
|
2023-07-18 22:34:15 +02:00
|
|
|
git clone --recurse-submodules https://github.com/lutris/lutris.git -b v0.5.13
|
2023-06-23 14:25:16 +02:00
|
|
|
cd lutris
|
|
|
|
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/
|