qtox repo only works with certain architectures

This commit is contained in:
Bob Mottram 2016-06-10 11:43:17 +01:00
parent 357b462e14
commit 849ee8dbec
No known key found for this signature in database
GPG Key ID: BA68F26108DC9F87
1 changed files with 10 additions and 6 deletions

View File

@ -1050,13 +1050,17 @@ function configure_user_interface {
# desktop
chroot "$rootdir" apt-get -y install mate-desktop-environment
# browser
chroot "$rootdir" apt-get -y install iceweasel
# Tox user interface
enable_tox_repo
chroot "$rootdir" apt-get -y install qtox
# NOTE: The Tox repo only supports a limited range of architectures
if [[ $ARCHITECTURE == 'amd64' || $ARCHITECTURE == 'i386' ]]; then
# Tox user interface
enable_tox_repo
# TODO: this may not work on all architectures
chroot "$rootdir" apt-get -y install qtox
fi
# Syncthing
install_syncthing
@ -1079,7 +1083,7 @@ function configure_user_interface {
chroot "$rootdir" apt-get -y install hexchat profanity
# zeronet
# TODO
fi
}