Checks that rpmbuild is installed
This commit is contained in:
parent
4c92bc4cc8
commit
b2ecc775a6
1 changed files with 15 additions and 0 deletions
|
|
@ -11,6 +11,21 @@ work_dir=$PWD/work
|
||||||
downloaded_dir=$work_dir/discord
|
downloaded_dir=$work_dir/discord
|
||||||
desktop_file=$work_dir/discord.desktop
|
desktop_file=$work_dir/discord.desktop
|
||||||
|
|
||||||
|
# Checks that rpmbuild is installed
|
||||||
|
if ! type 'rpmbuild' > /dev/null
|
||||||
|
then
|
||||||
|
echo "You need the rpm development tools to create rpm packages"
|
||||||
|
read -p "Do you want to install rpmdevtools now? This will run sudo dnf install rpmdevtools. [y/N]" answer
|
||||||
|
case $answer in
|
||||||
|
[Yy]* ) sudo dnf install rpmdevtools;;
|
||||||
|
* )
|
||||||
|
echo "Ok, I won't install rpmdevtools."
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
echo "rpmbuild detected!"
|
||||||
|
fi
|
||||||
|
|
||||||
# Download the discord tar.gz archive and puts its name in the global variable archive_name.
|
# Download the discord tar.gz archive and puts its name in the global variable archive_name.
|
||||||
function download_discord {
|
function download_discord {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue