diff options
author | davidovski <david@davidovski.xyz> | 2021-12-11 18:53:27 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-12-11 18:53:27 +0000 |
commit | 024004ce627f43723c6a6cf251b2161ff3ba1e9b (patch) | |
tree | 2485769aaac0babd771872b7542fb40a4f1129e3 /repo | |
parent | f67f96be9b135b05e06a31feb1a1a050ae2bf0d0 (diff) |
added ssl to python
Diffstat (limited to 'repo')
-rw-r--r-- | repo/core/python.xibuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/repo/core/python.xibuild b/repo/core/python.xibuild index 4383145..85110af 100644 --- a/repo/core/python.xibuild +++ b/repo/core/python.xibuild @@ -6,12 +6,12 @@ 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 + ./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 $PKG_DEST/usr/bin/python3 $PKG_DEST/usr/bin/python - ln $PKG_DEST/usr/bin/python3 $PKG_DEST/usr/bin/py + ln $PKG_DEST/usr/bin/pip3 $PKG_DEST/usr/bin/pip } |