mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-10-31 15:20:13 +00:00
3a73d8cb30
Signed-off-by: Stephan Lachnit <stephanlachnit@protonmail.com>
11 lines
305 B
Bash
Executable File
11 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=$(git describe --tags --dirty=+)
|
|
|
|
FILE_PATTERN="--exclude-vcs --exclude-vcs-ignores ."
|
|
|
|
# default version
|
|
tar -czf MangoHud-$VERSION-Source.tar.gz $FILE_PATTERN
|
|
# DFSG compliant version, excludes NVML
|
|
tar -czf MangoHud-$VERSION-Source-DFSG.tar.gz --exclude=include/nvml.h $FILE_PATTERN
|