1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/overleaf_ynh.git synced 2024-09-03 19:56:27 +02:00
This commit is contained in:
Thomas 2024-05-01 21:31:01 +02:00 committed by GitHub
parent e93c1e88f9
commit 1de65d8218
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View file

@ -55,6 +55,12 @@ ram.runtime = "3G"
sha256 = "403e9572b32addb4252de171191200510af70cdb868e90838091183e3ebec9a7" sha256 = "403e9572b32addb4252de171191200510af70cdb868e90838091183e3ebec9a7"
autoupdate.strategy = "latest_github_commit" autoupdate.strategy = "latest_github_commit"
[resources.sources.libssl]
amd64.url = "http://ftp.de.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb"
amd64.sha256 = "aadf8b4b197335645b230c2839b4517aa444fd2e8f434e5438c48a18857988f7"
arm64.url = "http://ftp.de.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_arm64.deb"
arm64.sha256 = "fe7a7d313c87e46e62e614a07137e4a476a79fc9e5aab7b23e8235211280fee3"
[resources.system_user] [resources.system_user]
allow_email = true allow_email = true
@ -94,8 +100,3 @@ ram.runtime = "3G"
# clsi dependencies # clsi dependencies
"poppler-utils", "poppler-utils",
] ]
[resources.apt.extras.libssl]
repo = "deb http://ftp.fr.debian.org/debian bullseye main "
key = "http://ftp.fr.debian.org/debian/dists/bullseye/Release.gpg"
packages = ["libssl1.1_1.1.1w-0+deb11u1_amd64.deb"]

View file

@ -68,7 +68,9 @@ fi
ynh_script_progression --message="Setting up source files..." ynh_script_progression --message="Setting up source files..."
# Download, check integrity, uncompress and patch the source from app.src # Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir/build" ynh_setup_source --dest_dir="$install_dir/build" --source_id="main"
ynh_setup_source --dest_dir="$install_dir/build" --source_id="libssl"
mkdir -p $install_dir/tmp mkdir -p $install_dir/tmp
mkdir -p $install_dir/tmp/{projectHistories,dumpFolder,uploads} mkdir -p $install_dir/tmp/{projectHistories,dumpFolder,uploads}