mirror of
https://github.com/Leseratte10/acsm-calibre-plugin
synced 2024-11-15 19:48:29 +01:00
5a4d25e91d
* Not all systems have GNU sed, so don't assume `sed -i` works * Not all systems have /bin/bash, so use `env` to find bash
19 lines
727 B
Bash
Executable file
19 lines
727 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2023 Leseratte10
|
|
# This file is part of the ACSM Input Plugin by Leseratte10
|
|
# ACSM Input Plugin for Calibre / acsm-calibre-plugin
|
|
#
|
|
# For more information, see:
|
|
# https://github.com/Leseratte10/acsm-calibre-plugin
|
|
|
|
pushd calibre-plugin
|
|
|
|
# As the latest oscrypto release (1.3.0) does not yet support OpenSSL3, we'll have to download a forked version ...
|
|
# See https://github.com/wbond/oscrypto/pull/61 for more information.
|
|
|
|
wget https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/asn1crypto_1.5.1.zip -O asn1crypto.zip
|
|
wget https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_2023-12-19.zip -O oscrypto.zip
|
|
|
|
popd
|
|
|