diff options
author | davidovski <david@davidovski.xyz> | 2021-10-06 23:29:58 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-06 23:29:58 +0100 |
commit | 7ff38024bec68fe70fb6eec0f5cd16188507558f (patch) | |
tree | d9f366b28b7d31ddbe3057669474f58962541a68 /repo/core/python.xibuild | |
parent | 76a1447eb1599f23165806b4ead10c5294039d05 (diff) |
added all lfs packages
Diffstat (limited to 'repo/core/python.xibuild')
-rw-r--r-- | repo/core/python.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/python.xibuild b/repo/core/python.xibuild new file mode 100644 index 0000000..06d0b44 --- /dev/null +++ b/repo/core/python.xibuild @@ -0,0 +1,12 @@ +#!/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 + make + make DESTDIR=$PKG_DEST install +} |