summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2023-03-19 18:43:19 +0100
committerFlorian Müllner <fmuellner@gnome.org>2023-05-10 21:34:13 +0200
commit4ffd59ad2d2d4cbbc1b0cc68ab7ba55ba9fe7fe5 (patch)
treea2411fe39c303136adca2a9c7d1e5285d6a8a014
parent96bb0355ca88500b47f3cfe23cd99205f809ba3a (diff)
downloadgnome-shell-toolbox.tar.gz
tools/create-toolbox: Allow setting up support for GNOME Classictoolbox
As unbeloved as it is, it still needs testing. Make that a tad bit less annoying by automating the setup.
-rwxr-xr-xtools/toolbox/create-toolbox.sh20
1 files changed, 19 insertions, 1 deletions
diff --git a/tools/toolbox/create-toolbox.sh b/tools/toolbox/create-toolbox.sh
index c63c49e56..0294719af 100755
--- a/tools/toolbox/create-toolbox.sh
+++ b/tools/toolbox/create-toolbox.sh
@@ -18,6 +18,7 @@ usage() {
-v, --version=VERSION Create container for stable version VERSION
(like 44) instead of the main branch
-r, --replace Replace an existing container
+ -c, --classic Set up support for GNOME Classic
-b, --builder Set up GNOME Builder configuration
--locales=LOCALES Enable support for additional locales LOCALES
--skip-mutter Do not build mutter
@@ -39,6 +40,7 @@ install_extra_packages() {
local -a pkgs
pkgs+=( ${LOCALES[@]/#/glibc-langpack-} )
+ [[ $SETUP_CLASSIC ]] && pkgs+=( gnome-menus )
[[ ${#pkgs[@]} > 0 ]] &&
toolbox_run su -c "dnf install -y ${pkgs[*]}"
@@ -65,12 +67,22 @@ create_builder_config() {
EOF
}
+setup_classic() {
+ local branch=${VERSION:+gnome-}${VERSION:-main}
+
+ toolbox_run /usr/libexec/install-meson-project.sh \
+ --prepare "git submodule update --init" \
+ -Dclassic_mode=true \
+ https://gitlab.gnome.org/GNOME/gnome-shell-extensions.git $branch
+}
+
TEMP=$(getopt \
--name $(basename $0) \
- --options 'n:v:rbh' \
+ --options 'n:v:rcbh' \
--longoptions 'name:' \
--longoptions 'version:' \
--longoptions 'replace' \
+ --longoptions 'classic' \
--longoptions 'builder' \
--longoptions 'locales:' \
--longoptions 'skip-mutter' \
@@ -100,6 +112,11 @@ while true; do
shift
;;
+ -c|--classic)
+ SETUP_CLASSIC=1
+ shift
+ ;;
+
-b|--builder)
SETUP_BUILDER=1
shift
@@ -142,4 +159,5 @@ install_extra_packages
[[ $SKIP_MUTTER ]] || toolbox_run update-mutter
+[[ $SETUP_CLASSIC ]] && setup_classic
[[ $SETUP_BUILDER ]] && create_builder_config