1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/agora_ynh.git synced 2024-09-03 18:06:21 +02:00
agora_ynh/scripts/_common

14 lines
419 B
Text
Raw Normal View History

2017-02-13 22:44:20 +01:00
AGORA_SOURCE_URL="https://www.agora-project.net/?ctrl=offline&action=download"
extract_source() {
local DESTDIR=$1
# retrieve and extract Agora tarball
rc_tarball="${DESTDIR}/agora.zip"
sudo wget -q -O "$rc_tarball" "$AGORA_SOURCE_URL" \
|| ynh_die "Unable to download source tarball"
2017-02-13 23:04:23 +01:00
sudo unzip "$rc_tarball" "$DESTDIR" \
2017-02-13 22:44:20 +01:00
|| ynh_die "Unable to extract source tarball"
sudo rm "$rc_tarball"
}