Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Commit bf8d462

Browse files
committed
Add installer -k|--make-skel and -b|--custom-binary-path. Fix #166.
1 parent 1a30835 commit bf8d462

File tree

3 files changed

+31
-21
lines changed

3 files changed

+31
-21
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22
* 3.7.1
3-
- Add `-V|--verbose` to installer. Fix #165. [T. H. Wright]
3+
- Add installer `-V|--verbose`. Fix #165. [T. H. Wright]
4+
- Add installer `-k|--make_skel` and `-b|--custom-binary-path`. Resolve TODOs. Fix #166. [T. H. Wright]
45
- Disable wine 8.0 installs. Fix #148. [T. H. Wright]
56
* 3.7.0
67
- Decoupled script from `zenity` and compatible with `dialog` and `whiptail`. Fix #104. [T. H. Wright]

LogosLinuxInstaller.sh

+24-18
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,14 @@ Options:
5252
\$HOME/.config/Logos_on_Linux/Logos_on_Linux.conf
5353
Optionally can accept a config file provided by
5454
the user.
55+
-b --custom-binary-path Set a custom path to search for wine binaries
56+
during the install.
5557
-r --regenerate-scripts Regenerates the Logos.sh and controlPanel.sh
5658
scripts using the config file.
5759
-F --skip-fonts Skips installing corefonts and tahoma.
5860
-f --force-root Sets LOGOS_FORCE_ROOT to true, which permits
5961
the root user to run the script.
62+
-k --make-skel Make a skeleton install only.
6063
EOF
6164
}
6265

@@ -446,20 +449,6 @@ make_skel() {
446449
verbose && echo "skel64 done!"
447450
}
448451

449-
# TODO: Move this to a CLI optarg.
450-
451-
# #======= Parsing =============
452-
# case "${1}" in
453-
# "skel64")
454-
# export WINE_EXE="wine64"
455-
# make_skel "${WINE_EXE}" "none.AppImage"
456-
# rm -rf "${WORKDIR}"
457-
# exit 0
458-
# ;;
459-
# *)
460-
# verbose && echo "No arguments parsed."
461-
# esac
462-
463452
## BEGIN CHECK DEPENDENCIES FUNCTIONS
464453
check_commands() {
465454
for cmd in "$@"; do
@@ -644,7 +633,7 @@ checkPath() {
644633

645634
createWineBinaryList() {
646635
#TODO: Make optarg to add custom path to this array.
647-
WINEBIN_PATH_ARRAY=( "/usr/local/bin" "$HOME/bin" "$HOME/PlayOnLinux/wine/linux-amd64/*/bin" "$HOME/.steam/steam/steamapps/common/Proton - Experimental/files/bin" )
636+
WINEBIN_PATH_ARRAY=( "/usr/local/bin" "$HOME/bin" "$HOME/PlayOnLinux/wine/linux-amd64/*/bin" "$HOME/.steam/steam/steamapps/common/Proton - Experimental/files/bin" "${CUSTOMBINPATH}" )
648637

649638
# Temporarily modify PATH for additional WINE64 binaries.
650639
for p in "${WINEBIN_PATH_ARRAY[@]}"; do
@@ -796,6 +785,11 @@ checkExistingInstall() {
796785
}
797786

798787
beginInstall() {
788+
if [ "${SKEL}" -eq "1" ]; then
789+
verbose && echo "Making a skeleton install of the project only. Exiting after completion."
790+
make_skel "none.AppImage"
791+
exit 0;
792+
fi
799793
if [ -n "${WINEBIN_CODE}" ]; then
800794
case "${WINEBIN_CODE}" in
801795
"System"|"Proton"|"PlayOnLinux"|"Custom")
@@ -1216,8 +1210,6 @@ postInstall() {
12161210

12171211
main() {
12181212
echo "$LOGOS_SCRIPT_TITLE, $LOGOS_SCRIPT_VERSION by $LOGOS_SCRIPT_AUTHOR."
1219-
die-if-root;
1220-
getDialog;
12211213
debug && logos_info "Debug mode enabled."
12221214

12231215
# BEGIN PREPARATION
@@ -1252,6 +1244,11 @@ main() {
12521244
fi
12531245
}
12541246

1247+
# BEGIN SCRIPT
1248+
1249+
die-if-root;
1250+
getDialog;
1251+
12551252
# BEGIN OPTARGS
12561253
RESET_OPTARGS=true
12571254
for arg in "$@"
@@ -1269,10 +1266,12 @@ do
12691266
--regenerate-scripts) set -- "$@" -r ;;
12701267
--force-root) set -- "$@" -f ;;
12711268
--debug) set -- "$@" -D ;;
1269+
--make-skel) set -- "$@" -k ;;
1270+
--custom-binary-path) set -- "$@" -b ;;
12721271
*) set -- "$@" "$arg" ;;
12731272
esac
12741273
done
1275-
OPTSTRING=':hvVcDfFr' # Available options
1274+
OPTSTRING=':hvVcDfFrkb:' # Available options
12761275

12771276
# First loop: set variable options which may affect other options
12781277
while getopts "$OPTSTRING" opt; do
@@ -1310,6 +1309,13 @@ while getopts "$OPTSTRING" opt; do
13101309
r) export REGENERATE="1"; ;;
13111310
D) export DEBUG="true";
13121311
WINEDEBUG=""; ;;
1312+
k) export SKEL="1"; ;;
1313+
b) CUSTOMBINPATH="$2";
1314+
if [ -d "$CUSTOMBINPATH" ]; then
1315+
export CUSTOMBINPATH;
1316+
else
1317+
logos_info "$LOGOS_SCRIPT_TITLE: User supplied path: \"${OPTARG}\". Custom binary path does not exist." >&2 && usage >&2 && exit
1318+
fi; shift 2 ;;
13131319
\?) logos_info "$LOGOS_SCRIPT_TITLE: -$OPTARG: undefined option." >&2 && usage >&2 && exit ;;
13141320
:) logos_info "$LOGOS_SCRIPT_TITLE: -$OPTARG: missing argument." >&2 && usage >&2 && exit ;;
13151321
esac

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This repository contains a set of bash scripts for installing Logos Bible (Verbu
1111

1212
```
1313
Usage: ./LogosLinuxInstaller.sh
14-
Installs Bible Software with Wine on Linux.
14+
Installs ${FLPRODUCT} Bible Software with Wine on Linux.
1515
1616
Options:
1717
-h --help Prints this help message and exit.
@@ -20,14 +20,17 @@ Options:
2020
-D --debug Makes Wine print out additional info.
2121
-c --config Use the Logos on Linux config file when
2222
setting environment variables. Defaults to:
23-
$HOME/.config/Logos_on_Linux/Logos_on_Linux.conf
23+
\$HOME/.config/Logos_on_Linux/Logos_on_Linux.conf
2424
Optionally can accept a config file provided by
2525
the user.
26+
-b --custom-binary-path Set a custom path to search for wine binaries
27+
during the install.
2628
-r --regenerate-scripts Regenerates the Logos.sh and controlPanel.sh
2729
scripts using the config file.
2830
-F --skip-fonts Skips installing corefonts and tahoma.
2931
-f --force-root Sets LOGOS_FORCE_ROOT to true, which permits
3032
the root user to run the script.
33+
-k --make-skel Make a skeleton install only.
3134
```
3235

3336
## Logos.sh

0 commit comments

Comments
 (0)