| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #!/bin/bash
- #
- # Get a default set of modules. Edit as desired.
- #
- dangeroption="--allow-internet-access-and-risk-tracing-and-jail-or-martyrdom"
- intro=
- intro()
- {
- echo ""
- echo "This script installs recommended basic Sword modules for use by"
- echo "the Bible emacs application."
- echo ""
- }
- warn()
- {
- echo ""
- echo "-=+* WARNING *+=- -=+* WARNING *+=-"
- echo ""
- echo ""
- echo "Although this setup script provides a convenient way for installing"
- echo "and upgrading SWORD components, it also uses a systematic method"
- echo "for accessing sites which gives packet sniffers a target to lock on"
- echo "to for singling out users."
- echo ""
- echo ""
- echo "IF YOU LIVE IN A COUNTRY WHERE YOU MAY BE PERSECUTED AND DO NOT WISH"
- echo "TO RISK DETECTION, YOU SHOULD *NOT* USE THIS SETUP SCRIPT!"
- }
- intro;
- warn;
- echo -n "Continue [y/N]? " >&2
- read answer
- if [ "$answer" != "y" ]; then
- exit 1
- fi
- echo -n "Updating remote sources...."
- installmgr $dangeroption -sc
- echo "done"
- echo -n "Installing Bible modules...."
- installmgr $dangeroption -r CrossWire
- installmgr $dangeroption -ri CrossWire KJV
- installmgr $dangeroption -ri CrossWire Byz
- installmgr $dangeroption -ri CrossWire MorphGNT
- installmgr $dangeroption -ri CrossWire SBLGNT
- installmgr $dangeroption -ri CrossWire SBLGNTApp
- installmgr $dangeroption -ri CrossWire WHNU
- installmgr $dangeroption -ri CrossWire OSHB
- installmgr $dangeroption -ri CrossWire OSHM
- installmgr $dangeroption -ri CrossWire LXX
- installmgr $dangeroption -ri CrossWire Robinson
- installmgr $dangeroption -ri CrossWire Packard
- installmgr $dangeroption -ri CrossWire AbbottSmithStrongs
- installmgr $dangeroption -ri CrossWire BDBGlosses_Strongs
- installmgr $dangeroption -ri CrossWire MLStrong
- installmgr $dangeroption -ri CrossWire VarApp
- installmgr $dangeroption -ri CrossWire TSK
- installmgr $dangeroption -ri CrossWire Clarke
- installmgr $dangeroption -ri CrossWire MHC
- installmgr $dangeroption -r "Lockman Foundation"
- installmgr $dangeroption -ri "Lockman Foundation" NASB
- installmgr $dangeroption -r Xiphos
- installmgr $dangeroption -ri Xiphos StrongsRealGreek
- installmgr $dangeroption -ri Xiphos StrongsRealHebrew
- installmgr $dangeroption -ri Xiphos NET
- installmgr $dangeroption -ri Xiphos NETnote
|