mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-07 10:26:04 +08:00

This makes them pass shellcheck. Except for a few unused export warnings. I also wonder if the majority of these files should be in the root of the project, or should be moved to "build-scripts" (or should still even exist). a few minor changes one more minor changes
37 lines
935 B
Bash
Executable File
37 lines
935 B
Bash
Executable File
#!/usr/bin/env bash
|
|
arch=$(uname -m)
|
|
if [ -z "${arch}" ]; then
|
|
echo "Sorry, cannot identify architecture"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -f /etc/os-release ]; then
|
|
dist=$(grep "^ID=" /etc/os-release | cut -d \" -f 2)
|
|
else
|
|
dist=""
|
|
fi
|
|
|
|
if [ -z "${dist}" ]; then
|
|
echo "Sorry, cannot identify Linux distro"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -x /usr/bin/rpmbuild ]; then
|
|
echo "Could not locate /usr/bin/rpmbuild"
|
|
echo "Please install rpm-build package to continue."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Making RPM for ${dist}"
|
|
|
|
dir="release/linux-${dist}"
|
|
mkdir -p "${dir}" || exit 1
|
|
|
|
tar="../@PACKAGE_NAME@-@PACKAGE_VERSION@.tar.xz"
|
|
|
|
tar -cvJf "${tar}" --exclude=\*.git --exclude=\*.tar.xz --exclude=\*.a --exclude=\*.la --exclude=\*.Po --exclude=\*.o -C .. dosbox-x || exit 1
|
|
cp -vf "${tar}" ~/rpmbuild/SOURCES/ || exit 1
|
|
rpmbuild -bb contrib/linux/dosbox-x.spec || exit 1
|
|
rm -v "${tar}" || exit 1
|
|
mv -v ~/rpmbuild/RPMS/"${arch}"/@PACKAGE_NAME@-*@PACKAGE_VERSION@*.rpm "${dir}/" || exit 1
|