qtox repo only works with certain architectures
This commit is contained in:
parent
357b462e14
commit
849ee8dbec
|
@ -1050,13 +1050,17 @@ function configure_user_interface {
|
||||||
|
|
||||||
# desktop
|
# desktop
|
||||||
chroot "$rootdir" apt-get -y install mate-desktop-environment
|
chroot "$rootdir" apt-get -y install mate-desktop-environment
|
||||||
|
|
||||||
# browser
|
# browser
|
||||||
chroot "$rootdir" apt-get -y install iceweasel
|
chroot "$rootdir" apt-get -y install iceweasel
|
||||||
|
|
||||||
# Tox user interface
|
# NOTE: The Tox repo only supports a limited range of architectures
|
||||||
enable_tox_repo
|
if [[ $ARCHITECTURE == 'amd64' || $ARCHITECTURE == 'i386' ]]; then
|
||||||
chroot "$rootdir" apt-get -y install qtox
|
# Tox user interface
|
||||||
|
enable_tox_repo
|
||||||
|
# TODO: this may not work on all architectures
|
||||||
|
chroot "$rootdir" apt-get -y install qtox
|
||||||
|
fi
|
||||||
|
|
||||||
# Syncthing
|
# Syncthing
|
||||||
install_syncthing
|
install_syncthing
|
||||||
|
@ -1079,7 +1083,7 @@ function configure_user_interface {
|
||||||
chroot "$rootdir" apt-get -y install hexchat profanity
|
chroot "$rootdir" apt-get -y install hexchat profanity
|
||||||
|
|
||||||
# zeronet
|
# zeronet
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue