python/python-evdev: Fix PYTHONPATH.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
fourtysixandtwo 2024-03-31 11:33:42 -06:00 committed by Willy Sudiarto Raharjo
parent fa4a4c70ab
commit 6a8f4d53c9
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -69,7 +69,8 @@ find -L . \
# ... but upstream shipped evdev-1.0.0 with 660 permissions everywhere, so:
find -L . -perm 660 -exec chmod 644 {} \;
export PYTHONPATH=/opt/python3.9/site-packages/
PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')
export PYTHONPATH=/opt/python$PYVER/site-packages/
python3 setup.py install --root=$PKG
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \