mirror of
https://github.com/YunoHost-Apps/agendav_ynh.git
synced 2024-09-03 20:36:12 +02:00
54 lines
1.3 KiB
Bash
54 lines
1.3 KiB
Bash
#
|
|
# Common variables
|
|
#
|
|
|
|
# AgenDAV version
|
|
VERSION="2.0.0"
|
|
|
|
# Source tarball checksum
|
|
SOURCE_SHA256="142e8d9ea0e3e6feacd1523c5cabc834fe8bc3e9dbae03034089758b9c3abb92"
|
|
|
|
# Source tarball URL
|
|
SOURCE_URL="https://github.com/adobo/agendav/releases/download/${VERSION}/agendav-${VERSION}.tar.gz"
|
|
|
|
# App package root directory should be the parent folder
|
|
PKGDIR=$(cd ../; pwd)
|
|
|
|
# Associative array of languages
|
|
declare -A LANGUAGES=(
|
|
[nl]=nl_NL
|
|
[en]=en
|
|
[fr]=fr_FR
|
|
[de]=de_DE
|
|
[it]=it_IT
|
|
[es]=es_ES
|
|
)
|
|
|
|
#
|
|
# Common helpers
|
|
#
|
|
|
|
# Source app helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Download and extract AgenDAV sources to the given directory
|
|
# usage: extract_agendav DESTDIR
|
|
extract_agendav() {
|
|
local DESTDIR=$1
|
|
|
|
# retrieve and extract tarball
|
|
tarball_path="/tmp/agendav.tar.gz"
|
|
rm -f "$tarball_path"
|
|
wget -q -O "$tarball_path" "$SOURCE_URL" \
|
|
|| ynh_die "Unable to download AgenDAV archive"
|
|
echo "$SOURCE_SHA256 $tarball_path" | sha256sum -c >/dev/null \
|
|
|| ynh_die "Invalid checksum of downloaded archive"
|
|
tar xf "$tarball_path" -C "$DESTDIR" --strip-components 1 \
|
|
|| ynh_die "Unable to extract AgenDAV archive"
|
|
rm -rf "$tarball_path"
|
|
|
|
# apply patches
|
|
(cd "$DESTDIR" \
|
|
&& for p in ${PKGDIR}/patches/*.patch; do patch -p1 < $p; done) \
|
|
|| die "Unable to apply patches to AgenDAV"
|
|
}
|