mirror of
https://github.com/void-linux/void-packages.git
synced 2025-05-02 14:03:50 +02:00
Also include bluez headers at build time to allow Bluetooth sockets in the Python stdlib. h/t: @sgn
14 lines
349 B
Bash
14 lines
349 B
Bash
#
|
|
# Useful variables for determining Python version and paths.
|
|
#
|
|
|
|
py2_ver="2.7"
|
|
py2_lib="usr/lib/python${py2_ver}"
|
|
py2_sitelib="${py2_lib}/site-packages"
|
|
py2_inc="usr/include/python${py2_ver}"
|
|
|
|
py3_ver="3.11"
|
|
py3_abiver=""
|
|
py3_lib="usr/lib/python${py3_ver}"
|
|
py3_sitelib="${py3_lib}/site-packages"
|
|
py3_inc="usr/include/python${py3_ver}${py3_abiver}"
|