mirror of
https://github.com/Leseratte10/acsm-calibre-plugin
synced 2025-01-13 20:01:19 +01:00
27 lines
518 B
Bash
Executable file
27 lines
518 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ ! -f calibre-plugin/asn1crypto.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/oscrypto.zip ] && ./package_modules.sh
|
|
|
|
pushd calibre-plugin
|
|
pushd keyextract
|
|
|
|
# Compile C programs:
|
|
make
|
|
|
|
popd
|
|
|
|
# Delete cache
|
|
rm -r __pycache__
|
|
|
|
# Set module ID. This needs to be changed if any of the module ZIPs change.
|
|
echo -n "2021-12-19-03" > module_id.txt
|
|
|
|
# Copy LICENSE so it'll be included in the ZIP.
|
|
cp ../LICENSE LICENSE
|
|
|
|
# Create ZIP file from calibre-plugin folder.
|
|
zip -r ../calibre-plugin.zip *
|
|
|
|
popd
|
|
|