2024-05-12 09:07:04 +02:00
|
|
|
#!/usr/bin/env bash
|
2021-09-25 16:24:03 +02:00
|
|
|
|
2023-02-24 14:11:15 +01:00
|
|
|
# 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
|
|
|
|
|
2021-09-25 16:24:03 +02:00
|
|
|
pushd calibre-plugin
|
|
|
|
|
2022-07-28 18:07:52 +02:00
|
|
|
# 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.
|
|
|
|
|
2022-05-01 16:08:30 +02:00
|
|
|
wget https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/asn1crypto_1.5.1.zip -O asn1crypto.zip
|
2023-12-19 06:45:01 +01:00
|
|
|
wget https://github.com/Leseratte10/acsm-calibre-plugin/releases/download/config/oscrypto_1.3.0_fork_2023-12-19.zip -O oscrypto.zip
|
2021-09-25 16:24:03 +02:00
|
|
|
|
|
|
|
popd
|
|
|
|
|