21 lines
369 B
Bash
Executable File
21 lines
369 B
Bash
Executable File
#! /bin/bash
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Clone Upstream
|
|
git clone --recurse-submodules https://github.com/ferrreo/lutris.git
|
|
cd lutris
|
|
git checkout fix-no-column-named-hidden-error
|
|
cp -rvf ../debian ./
|
|
|
|
# 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/
|