mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-16 11:46:10 +06:00
50 lines
919 B
Bash
Executable File
50 lines
919 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ ! -f calibre-plugin/asn1crypto.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/oscrypto.zip ] && ./package_modules.sh
|
|
|
|
rm -rf calibre-plugin-tmp || /bin/true
|
|
|
|
cp -r calibre-plugin calibre-plugin-tmp
|
|
|
|
pushd calibre-plugin-tmp
|
|
pushd keyextract
|
|
|
|
# Compile C programs:
|
|
make
|
|
|
|
popd
|
|
|
|
# Delete cache
|
|
rm -r __pycache__
|
|
rm *.pyc
|
|
|
|
# Set module ID. This needs to be changed if any of the module ZIPs change.
|
|
echo -n "2022-05-01-01" > module_id.txt
|
|
|
|
# Copy LICENSE and README.md so it'll be included in the ZIP.
|
|
cp ../LICENSE LICENSE
|
|
cp ../README.md README.md
|
|
|
|
shopt -s globstar
|
|
echo "Injecting Python2 compat code ..."
|
|
for file in **/*.py;
|
|
do
|
|
#echo $file
|
|
# Inject Python2 compat code:
|
|
sed '/#@@CALIBRE_COMPAT_CODE@@/ {
|
|
r __calibre_compat_code.py
|
|
d
|
|
}' -i $file
|
|
|
|
done
|
|
|
|
|
|
|
|
# Create ZIP file from calibre-plugin folder.
|
|
zip -r ../calibre-plugin.zip *
|
|
|
|
popd
|
|
rm -rf calibre-plugin-tmp
|
|
|