eth0s/ports/core/python3/Pkgfile

22 lines
538 B
Text
Raw Normal View History

# Description: Next generation of the python high-level scripting language
# URL:
# Maintainer:
# Depends on: libffi
name=python3
2019-10-20 06:25:03 +08:00
version=3.8.0
release=1
source=(https://www.python.org/ftp/python/$version/Python-$version.tar.xz)
build() {
cd Python-$version
./configure --prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--without-ensurepip
make
make DESTDIR=$PKG install
}