mirror of
https://github.com/YunoHost-Apps/jitsi_ynh.git
synced 2024-09-03 19:35:57 +02:00
Update install
This commit is contained in:
parent
c6a5d5b589
commit
3a80dd4ded
1 changed files with 3 additions and 3 deletions
|
@ -129,7 +129,7 @@ ynh_script_progression --message="Setting up source files..."
|
||||||
if [ $(uname -m) == "armv7l" ]
|
if [ $(uname -m) == "armv7l" ]
|
||||||
then
|
then
|
||||||
# prepare openjdk8 installation
|
# prepare openjdk8 installation
|
||||||
if ! -d "/tmp/jitsi-install/"
|
if [ ! -d "/tmp/jitsi-install/" ]
|
||||||
then
|
then
|
||||||
mkdir /tmp/jitsi-install/
|
mkdir /tmp/jitsi-install/
|
||||||
fi
|
fi
|
||||||
|
@ -160,13 +160,13 @@ then
|
||||||
git clone https://github.com/sctplab/usrsctp.git
|
git clone https://github.com/sctplab/usrsctp.git
|
||||||
git clone https://github.com/jitsi/jitsi-sctp
|
git clone https://github.com/jitsi/jitsi-sctp
|
||||||
|
|
||||||
if ! -d "/tmp/jitsi-install/jitsi-sctp/usrsctp/"
|
if [ ! -d "/tmp/jitsi-install/jitsi-sctp/usrsctp/" ]
|
||||||
then
|
then
|
||||||
mv ./usrsctp ./jitsi-sctp/usrsctp/
|
mv ./usrsctp ./jitsi-sctp/usrsctp/
|
||||||
fi
|
fi
|
||||||
cd ./jitsi-sctp
|
cd ./jitsi-sctp
|
||||||
# needed to make compile works
|
# needed to make compile works
|
||||||
if ! -d "/tmp/jitsi-install/jitsi-sctp/jniwrapper/native/src/main/resources/lib/linux-arm/"
|
if [ ! -d "/tmp/jitsi-install/jitsi-sctp/jniwrapper/native/src/main/resources/lib/linux-arm/" ]
|
||||||
then
|
then
|
||||||
mkdir -p ./jniwrapper/native/src/main/resources/lib/linux-arm/
|
mkdir -p ./jniwrapper/native/src/main/resources/lib/linux-arm/
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue