mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-04 20:04:00 +00:00
38 lines
1.2 KiB
Bash
Executable file
38 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
# local.sh
|
|
#
|
|
# Change the look of Adwaita, with ease
|
|
# Copyright (C) 2022 Gradience Team
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
read -p "Do you want to install Python requirements? [N/y] " answer
|
|
|
|
if [[ "$answer" == "y" ]]; then
|
|
pip3 install -r requirements.txt
|
|
elif [[ "$answer" == "n" || "$answer" == "" ]]; then
|
|
echo "Skipping requirements installation"
|
|
fi
|
|
|
|
echo "Cleaning builddir directory"
|
|
rm -r builddir
|
|
|
|
echo "Rebuilding"
|
|
meson setup builddir
|
|
meson configure builddir -Dprefix="$(pwd)/builddir" -Dbuildtype=debug
|
|
ninja -C builddir install
|
|
|
|
echo "Running"
|
|
ninja -C builddir run
|