2020-04-10 09:34:45 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-06-12 09:57:59 +00:00
|
|
|
VERSION=$(git describe --tags --dirty)
|
2020-12-25 17:06:07 +00:00
|
|
|
NAME=MangoHud-${VERSION}
|
|
|
|
TAR_NAME=${NAME}-Source.tar.xz
|
|
|
|
DFSG_TAR_NAME=${NAME}-Source-DFSG.tar.xz
|
|
|
|
|
|
|
|
# remove existing files
|
|
|
|
rm -rf sourcedir
|
|
|
|
rm -rf ${NAME}
|
|
|
|
rm -f ${TAR_NAME}
|
|
|
|
rm -f ${DFSG_TAR_NAME}
|
|
|
|
|
|
|
|
# create tarball with meson
|
|
|
|
meson sourcedir
|
|
|
|
meson dist --formats=xztar --include-subprojects --no-tests -C sourcedir
|
|
|
|
mv sourcedir/meson-dist/*.tar.xz ${TAR_NAME}
|
|
|
|
|
|
|
|
# create DFSG compliant version
|
|
|
|
# unpack since tarball is compressed
|
|
|
|
mkdir ${NAME}
|
|
|
|
tar -xf ${TAR_NAME} --strip 1 -C ${NAME}
|
|
|
|
# nvml.h is not DFSG compliant
|
|
|
|
rm ${NAME}/include/nvml.h
|
|
|
|
# minhook not needed
|
|
|
|
rm -r ${NAME}/modules/minhook
|
|
|
|
# vulkan headers from system
|
|
|
|
rm -r ${NAME}/subprojects/Vulkan-Headers-*
|
2021-10-28 13:38:32 +00:00
|
|
|
# spdlog from system
|
|
|
|
rm -r ${NAME}/subprojects/spdlog-*
|
2020-12-25 17:06:07 +00:00
|
|
|
# remove some dear imgui clutter
|
|
|
|
rm -rf ${NAME}/subprojects/imgui-*/examples ${NAME}/subprojects/imgui-*/misc
|
|
|
|
# compress new sources
|
|
|
|
tar -cJf ${DFSG_TAR_NAME} ${NAME}
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm -r sourcedir
|
|
|
|
rm -r ${NAME}
|