Add build scripts for creating manylinux wheels.

This commit is contained in:
Charles Leifer 2019-09-05 13:46:32 -05:00
parent 9acbaadf04
commit c99bbe0515
4 changed files with 110 additions and 0 deletions

8
build-scripts/cleanup.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
cleanup="openssl-OpenSSL_1_1_1b sqlcipher sqlcipher3 wheelhouse"
for p in $cleanup; do
if [[ -d "$p" ]]; then
sudo rm -rf "$p"
fi
done