21 lines
402 B
Bash
Executable File
21 lines
402 B
Bash
Executable File
# Clone Upstream
|
|
git clone https://github.com/flightlessmango/MangoHud -b v0.7.1
|
|
mv ./MangoHud ./mangohud
|
|
cp -rvf ./debian ./mangohud/
|
|
cd ./mangohud
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
apt-get install libvulkan-dev -y
|
|
|
|
# Build package
|
|
|
|
LOGNAME=root dh_make --createorig -y -l -p mangohud_0.7.1
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|