You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
acsm-calibre-plugin/bundle_calibre_plugin.sh

29 lines
558 B
Bash

#!/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 and README.md so it'll be included in the ZIP.
cp ../LICENSE LICENSE
cp ../README.md README.md
# Create ZIP file from calibre-plugin folder.
zip -r ../calibre-plugin.zip *
popd