2016-08-30 22:42:56 +02:00
|
|
|
#
|
|
|
|
# Common variables
|
|
|
|
#
|
2017-02-13 22:28:50 +01:00
|
|
|
APPNAME="freshrss"
|
2016-10-31 12:18:57 +01:00
|
|
|
# FreshRSS version
|
2017-06-03 21:33:31 +02:00
|
|
|
VERSION="1.7.0"
|
2016-08-30 22:42:56 +02:00
|
|
|
|
2016-10-31 12:18:57 +01:00
|
|
|
# FreshRSS complete tarball checksum
|
2017-06-03 21:33:31 +02:00
|
|
|
FRESHRSS_SOURCE_SHA256="29da4ad53278dc2ccf7b13004c443158aa5256279ba31152681269642f7f2f91"
|
2016-08-30 22:42:56 +02:00
|
|
|
|
2016-10-31 12:18:57 +01:00
|
|
|
# Remote URL to fetch FreshRSS source tarball
|
2017-06-03 21:33:31 +02:00
|
|
|
FRESHRSS_SOURCE_URL="https://github.com/FreshRSS/FreshRSS/archive/1.7.0.tar.gz"
|
2016-08-30 22:42:56 +02:00
|
|
|
|
|
|
|
PKGDIR=$(cd ../; pwd)
|
|
|
|
|
2017-02-13 22:32:15 +01:00
|
|
|
#apt dependencies
|
|
|
|
DEPS_PKG_NAME="freshrss-deps"
|
|
|
|
|
2016-08-30 22:42:56 +02:00
|
|
|
#
|
|
|
|
# Common helpers
|
|
|
|
#
|
2016-10-31 12:18:57 +01:00
|
|
|
# Download and extract FreshRSS sources to the given directory
|
2016-08-30 22:42:56 +02:00
|
|
|
# usage: extract_freshrss DESTDIR
|
|
|
|
extract_freshrss() {
|
|
|
|
local DESTDIR=$1
|
|
|
|
|
2016-10-31 12:18:57 +01:00
|
|
|
# retrieve and extract FreshRSS tarball
|
2016-08-30 22:42:56 +02:00
|
|
|
rc_tarball="${DESTDIR}/freshrss.tar.gz"
|
2017-03-06 12:02:25 +01:00
|
|
|
wget -q -O "$rc_tarball" "$FRESHRSS_SOURCE_URL" \
|
2016-10-31 12:18:57 +01:00
|
|
|
|| ynh_die "Unable to download FreshRSS tarball"
|
2016-08-30 22:42:56 +02:00
|
|
|
echo "$FRESHRSS_SOURCE_SHA256 $rc_tarball" | sha256sum -c >/dev/null \
|
|
|
|
|| ynh_die "Invalid checksum of downloaded tarball"
|
|
|
|
tar xf "$rc_tarball" -C "$DESTDIR" --strip-components 1 \
|
|
|
|
|| ynh_die "Unable to extract FreshRss tarball"
|
2017-02-14 10:58:25 +01:00
|
|
|
sudo rm "$rc_tarball"
|
2016-08-30 22:42:56 +02:00
|
|
|
}
|
2017-03-05 17:17:14 +01:00
|
|
|
|
|
|
|
install_freshrss_dependencies() {
|
|
|
|
ynh_package_install_from_equivs ../conf/${DEPS_PKG_NAME}.control \
|
|
|
|
|| ynh_die "Unable to install dependencies"
|
|
|
|
}
|