2017-06-13 23:37:51 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-06-18 15:57:00 +02:00
|
|
|
#=================================================
|
2019-05-01 13:24:56 +02:00
|
|
|
# COMMON VARIABLES
|
2017-06-18 15:57:00 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
# dependencies used by the app
|
|
|
|
pkg_dependencies="transmission-daemon transmission-cli transmission-common acl"
|
2017-06-18 15:57:00 +02:00
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
2017-06-13 23:37:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-05-01 13:24:56 +02:00
|
|
|
# FUTURE OFFICIAL HELPERS
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
# Install or update the main directory yunohost.multimedia
|
|
|
|
#
|
|
|
|
# usage: ynh_multimedia_build_main_dir
|
|
|
|
ynh_multimedia_build_main_dir () {
|
|
|
|
local ynh_media_release="v1.2"
|
|
|
|
local checksum="806a827ba1902d6911095602a9221181"
|
|
|
|
|
|
|
|
# Download yunohost.multimedia scripts
|
2020-12-14 11:36:02 +01:00
|
|
|
wget -nv https://github.com/YunoHost-Apps/yunohost.multimedia/archive/${ynh_media_release}.tar.gz 2>&1
|
2019-05-01 13:24:56 +02:00
|
|
|
|
|
|
|
# Check the control sum
|
|
|
|
echo "${checksum} ${ynh_media_release}.tar.gz" | md5sum -c --status \
|
|
|
|
|| ynh_die "Corrupt source"
|
|
|
|
|
|
|
|
# Check if the package acl is installed. Or install it.
|
|
|
|
ynh_package_is_installed 'acl' \
|
|
|
|
|| ynh_package_install acl
|
|
|
|
|
|
|
|
# Extract
|
|
|
|
mkdir yunohost.multimedia-master
|
|
|
|
tar -xf ${ynh_media_release}.tar.gz -C yunohost.multimedia-master --strip-components 1
|
|
|
|
./yunohost.multimedia-master/script/ynh_media_build.sh
|
2017-06-13 23:37:51 +02:00
|
|
|
}
|
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
# Add a directory in yunohost.multimedia
|
|
|
|
# This "directory" will be a symbolic link to a existing directory.
|
|
|
|
#
|
|
|
|
# usage: ynh_multimedia_addfolder "Source directory" "Destination directory"
|
|
|
|
#
|
|
|
|
# | arg: -s, --source_dir= - Source directory - The real directory which contains your medias.
|
|
|
|
# | arg: -d, --dest_dir= - Destination directory - The name and the place of the symbolic link, relative to "/home/yunohost.multimedia"
|
|
|
|
ynh_multimedia_addfolder () {
|
|
|
|
# Declare an array to define the options of this helper.
|
|
|
|
declare -Ar args_array=( [s]=source_dir= [d]=dest_dir= )
|
|
|
|
local source_dir
|
|
|
|
local dest_dir
|
|
|
|
# Manage arguments with getopts
|
|
|
|
ynh_handle_getopts_args "$@"
|
|
|
|
|
|
|
|
./yunohost.multimedia-master/script/ynh_media_addfolder.sh --source="$source_dir" --dest="$dest_dir"
|
2017-06-13 23:37:51 +02:00
|
|
|
}
|