2022-08-18 04:55:16 +00:00
|
|
|
package:
|
|
|
|
name: distutils
|
2022-09-13 22:12:40 +00:00
|
|
|
version: 1.0.0 # Nonsense
|
2022-08-18 04:55:16 +00:00
|
|
|
_cpython_dynlib: true
|
2022-09-06 06:20:04 +00:00
|
|
|
top-level:
|
|
|
|
- distutils
|
2022-08-18 04:55:16 +00:00
|
|
|
source:
|
|
|
|
path: empty
|
|
|
|
build:
|
|
|
|
# Actually, this is not a shared library, but we want to load this dynamically anyway.
|
|
|
|
sharedlibrary: true
|
|
|
|
script: |
|
|
|
|
mkdir dist
|
|
|
|
export DISTDIR=$(pwd)/dist
|
|
|
|
cd $CPYTHONLIB
|
|
|
|
|
|
|
|
tar --exclude=__pycache__ -cf - distutils | tar -C $DISTDIR -xf -
|