mirror of
https://github.com/Leseratte10/acsm-calibre-plugin
synced 2024-12-28 09:58:38 +01:00
14 lines
378 B
Bash
Executable file
14 lines
378 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ ! -f calibre-plugin/cryptography.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/rsa.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/asn1crypto.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/oscrypto.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/pyasn1.zip ] && ./package_modules.sh
|
|
|
|
pushd calibre-plugin
|
|
|
|
zip -r ../calibre-plugin.zip *
|
|
|
|
popd
|
|
|