#!/usr/bin/bash # # 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 . read -p "Do you want to install Python requirements? (yes, no): " answer if [[ "$answer" == "yes" ]]; then pip3 install --user -r requirements.txt pip3 install $(pwd)/monet/material_color_utilities_python-0.1.0-py3-none-any.whl elif [[ "$answer" == "no" ]]; then echo "Skipping requirements installation" fi echo "Cleaning builddir directory" rm -r builddir echo "Rebuilding" meson builddir meson configure builddir -Dprefix="$(pwd)/builddir/testdir" ninja -C builddir install echo "Running" ninja -C builddir run