-
Notifications
You must be signed in to change notification settings - Fork 43
/
build.sh
45 lines (34 loc) · 1.26 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
# Script to build the extension zip and install the package
#
# This Script is released under GPL v3 license
# Copyright (C) 2021 hslbck
# Original script by Javad Rahmatzadeh for https://gitlab.gnome.org/jrahmatzadeh/just-perfection/-/blob/main/scripts/build.sh
set -e
echo "Packing extension ..."
gnome-extensions pack [email protected] \
--force \
--extra-source="icons" \
--extra-source="channel.js" \
--extra-source="channelList.json" \
--extra-source="convertCharset.js" \
--extra-source="io.js" \
--extra-source="player.js" \
--extra-source="radioMenu.js" \
--extra-source="searchDialog.js" \
--extra-source="searchProvider.js" \
--extra-source="titleMenu.js" \
--extra-source="../COPYING"
echo "Packing done!"
while getopts i flag; do
case $flag in
i) gnome-extensions install --force \
[email protected] && \
echo "Extension [email protected] is installed. Please restart GNOME Shell." || \
{ echo "ERROR: Could not install extension!"; exit 1; };;
*) echo "ERROR: Invalid flag!"
echo "Use '-i' to install the extension to your system."
echo "To just build it, run the script without any flag."
exit 1;;
esac
done