2023-03-09 19:29:53 +01:00
|
|
|
# Clone Upstream
|
2023-10-04 17:56:28 +02:00
|
|
|
git clone https://github.com/flightlessmango/MangoHud -b v0.7.0
|
2023-06-18 16:44:06 +02:00
|
|
|
mv ./MangoHud ./mangohud
|
2023-03-09 20:11:20 +01:00
|
|
|
cp -rvf ./debian ./mangohud/
|
2023-03-09 19:29:53 +01:00
|
|
|
cd ./mangohud
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-06-18 16:46:50 +02:00
|
|
|
|
2023-10-04 17:56:28 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p mangohud_0.7.0
|
2023-06-18 16:46:50 +02:00
|
|
|
|
2023-07-12 18:32:50 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-09 19:29:53 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|