Browse Source

Merge #428: Add option to install.sh to not build the Qt GUI

fe66f2e Add option to install.sh to not build the Qt GUI (Kristaps Kaupe)

Tree-SHA512: 66824731a18a7582de1a972f7fdc48d2928f4ba4406ff90412d7ed8e378831e07ea444d0724f007ac3dd94263c35ac85007744c77f2848449ac2ea354aadfd04
master
chris-belcher 6 years ago
parent
commit
e4ba373ea6
No known key found for this signature in database
GPG Key ID: EF734EA677F31129
  1. 6
      install.sh

6
install.sh

@ -361,6 +361,9 @@ parse_flags ()
--with-qt)
with_qt='1'
;;
--without-qt)
with_qt='0'
;;
"")
break
;;
@ -373,6 +376,7 @@ Options:
--develop code remains editable in place
--python, -p python version (default: python3)
--with-qt build the Qt GUI (incompatible with python2)
--without-qt don't build the Qt GUI
"
return 1
;;
@ -384,7 +388,7 @@ Options:
echo "ERROR: Joinmarket-Qt is currently only available for Python 3
Use the flag '--python=python3' to enable a python3 install."
return 1
elif [[ ${with_qt} != 1 ]] && [[ ${python} == python3* ]]; then
elif [[ ${with_qt} == '' ]] && [[ ${python} == python3* ]]; then
read -p "
INFO: Joinmarket-Qt for GUI Taker and Tumbler modes is available.
Install Qt dependencies (~160mb) ? [y|n] : "

Loading…
Cancel
Save