mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-10-31 15:20:13 +00:00
acf2d88fbc
Signed-off-by: Stephan Lachnit <stephanlachnit@protonmail.com>
14 lines
374 B
Bash
Executable File
14 lines
374 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=$(git describe --tags --dirty)
|
|
NAME=MangoHud-$VERSION-Source
|
|
|
|
# create archive via git
|
|
git archive HEAD --format=tar --prefix=${NAME}/ --output=${NAME}.tar
|
|
# create DFSG compliant version which excludes NVML
|
|
cp ${NAME}.tar ${NAME}-DFSG.tar
|
|
tar -f ${NAME}-DFSG.tar --delete ${NAME}/include/nvml.h
|
|
# compress archives
|
|
gzip ${NAME}.tar
|
|
gzip ${NAME}-DFSG.tar
|