summaryrefslogtreecommitdiff
path: root/makewheels.sh
blob: bacf92d6dbe0bf7a7ba9f4befabc58fc4f20ef6d (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

for bindir in /opt/python/*/bin; do
    "$bindir/pip" wheel /netifaces/ -w wheelhouse/
done

for whl in wheelhouse/*.whl; do
    auditwheel repair "$whl" -w /netifaces/wheelhouse/
done