1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/prosody_ynh.git synced 2024-09-03 20:15:57 +02:00

Merge pull request #10 from YunoHost-Apps/testing

Testing
This commit is contained in:
yalh76 2022-06-26 00:38:59 +02:00 committed by GitHub
commit 50802a0548
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 10 deletions

View file

@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Prosody is a modern XMPP communication server. It aims to be easy to set up and configure, and efficient with system resources. Additionally, for developers it aims to be easy to extend and give a flexible system on which to rapidly develop added functionality, or prototype new protocols. Prosody is a modern XMPP communication server. It aims to be easy to set up and configure, and efficient with system resources. Additionally, for developers it aims to be easy to extend and give a flexible system on which to rapidly develop added functionality, or prototype new protocols.
**Shipped version:** 0.11.13~ynh2 **Shipped version:** 0.11.13~ynh3
## Disclaimers / important information ## Disclaimers / important information
* Prosody will not replace the XMPP service Metronome integrated in YunoHost, it has been implemented for some specific apps that require Prosody * Prosody will not replace the XMPP service Metronome integrated in YunoHost, it has been implemented for some specific apps that require Prosody

View file

@ -18,7 +18,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Prosody is a modern XMPP communication server. It aims to be easy to set up and configure, and efficient with system resources. Additionally, for developers it aims to be easy to extend and give a flexible system on which to rapidly develop added functionality, or prototype new protocols. Prosody is a modern XMPP communication server. It aims to be easy to set up and configure, and efficient with system resources. Additionally, for developers it aims to be easy to extend and give a flexible system on which to rapidly develop added functionality, or prototype new protocols.
**Version incluse :** 0.11.13~ynh2 **Version incluse :** 0.11.13~ynh3
## Avertissements / informations importantes ## Avertissements / informations importantes
* Prosody will not replace the XMPP service Metronome integrated in YunoHost, it has been implemented for some specific apps that require Prosody * Prosody will not replace the XMPP service Metronome integrated in YunoHost, it has been implemented for some specific apps that require Prosody

View file

@ -5,7 +5,7 @@
"description": { "description": {
"en": "a modern XMPP communication server" "en": "a modern XMPP communication server"
}, },
"version": "0.11.13~ynh2", "version": "0.11.13~ynh3",
"url": "https://prosody.im/", "url": "https://prosody.im/",
"upstream": { "upstream": {
"license": "MIT", "license": "MIT",

View file

@ -96,15 +96,18 @@ ynh_install_app_dependencies $pkg_dependencies
#================================================= #=================================================
# BUILD PROSODY # BUILD PROSODY
#================================================= #=================================================
ynh_script_progression --message="Building Prosody..." if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Building Prosody..."
pushd "$builddir" pushd "$builddir"
./configure --prefix=/usr ./configure --prefix=/usr
make make
make install make install
popd popd
ynh_secure_remove --file="$builddir" ynh_secure_remove --file="$builddir"
fi
#================================================= #=================================================
# UPDATE A CONFIG FILE # UPDATE A CONFIG FILE