diff options
Diffstat (limited to 'repo/core/python.xibuild')
-rw-r--r-- | repo/core/python.xibuild | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/repo/core/python.xibuild b/repo/core/python.xibuild deleted file mode 100644 index 7e71733..0000000 --- a/repo/core/python.xibuild +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -DEPS=(bzip2 expat gdbm libffi libnsl libxcrypt openssl zlib) - -SOURCE=https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tgz -DESC="The Python development environment" - -build () { - ./configure --prefix=/usr --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=yes --enable-optimizations --with-ssl --with-requests - make - make DESTDIR=$PKG_DEST install -} - -package () { - ln -s /usr/bin/python3 $PKG_DEST/usr/bin/python - ln -s /usr/bin/pip3 $PKG_DEST/usr/bin/pip -} |