Second ncurses library for toxic
This commit is contained in:
parent
61f30f8036
commit
bba4d55118
|
@ -510,7 +510,8 @@ function mesh_tox_node {
|
||||||
chroot "${rootdir}" /bin/bash -x <<EOF
|
chroot "${rootdir}" /bin/bash -x <<EOF
|
||||||
cd ${INSTALL_DIR}/toxcore
|
cd ${INSTALL_DIR}/toxcore
|
||||||
autoreconf -i
|
autoreconf -i
|
||||||
./configure --enable-daemon
|
./configure --enable-daemon --prefix=/usr/local
|
||||||
|
make clean
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
EOF
|
EOF
|
||||||
|
@ -518,7 +519,8 @@ EOF
|
||||||
/bin/bash -x <<EOF
|
/bin/bash -x <<EOF
|
||||||
cd ${INSTALL_DIR}/toxcore
|
cd ${INSTALL_DIR}/toxcore
|
||||||
autoreconf -i
|
autoreconf -i
|
||||||
./configure --enable-daemon
|
./configure --enable-daemon --prefix=/usr/local
|
||||||
|
make clean
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
EOF
|
EOF
|
||||||
|
@ -690,11 +692,11 @@ function mesh_tox_client {
|
||||||
if [ "${rootdir}" ]; then
|
if [ "${rootdir}" ]; then
|
||||||
chroot "${rootdir}" apt-get -yq install libncursesw5-dev libconfig-dev libqrencode-dev
|
chroot "${rootdir}" apt-get -yq install libncursesw5-dev libconfig-dev libqrencode-dev
|
||||||
chroot "${rootdir}" apt-get -yq install libcurl4-openssl-dev libvpx-dev libopenal-dev
|
chroot "${rootdir}" apt-get -yq install libcurl4-openssl-dev libvpx-dev libopenal-dev
|
||||||
chroot "${rootdir}" apt-get -yq install libqrencode-dev libpng-dev
|
chroot "${rootdir}" apt-get -yq install libqrencode-dev libpng-dev libncurses5-dev
|
||||||
else
|
else
|
||||||
apt-get -yq install libncursesw5-dev libconfig-dev libqrencode-dev
|
apt-get -yq install libncursesw5-dev libconfig-dev libqrencode-dev
|
||||||
apt-get -yq install libcurl4-openssl-dev libvpx-dev libopenal-dev
|
apt-get -yq install libcurl4-openssl-dev libvpx-dev libopenal-dev
|
||||||
apt-get -yq install libqrencode-dev libpng-dev
|
apt-get -yq install libqrencode-dev libpng-dev libncurses5-dev
|
||||||
fi
|
fi
|
||||||
|
|
||||||
TEMP_SCRIPT_NAME=fbtmp728353.sh
|
TEMP_SCRIPT_NAME=fbtmp728353.sh
|
||||||
|
|
Loading…
Reference in New Issue