mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
124 lines
4.8 KiB
Makefile
124 lines
4.8 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="Python3"
|
|
# When changing PKG_VERSION remember to sync PKG_PYTHON_VERSION!
|
|
PKG_VERSION="3.7.3"
|
|
PKG_SHA256="da60b54064d4cfcd9c26576f6df2690e62085123826cff2e667e72a91952d318"
|
|
PKG_LICENSE="OSS"
|
|
PKG_SITE="http://www.python.org/"
|
|
PKG_URL="http://www.python.org/ftp/python/$PKG_VERSION/${PKG_NAME::-1}-$PKG_VERSION.tar.xz"
|
|
PKG_DEPENDS_HOST="zlib:host bzip2:host libffi:host util-linux:host"
|
|
PKG_DEPENDS_TARGET="toolchain sqlite expat zlib bzip2 openssl Python3:host readline ncurses"
|
|
PKG_LONGDESC="Python3 is an interpreted object-oriented programming language."
|
|
|
|
PKG_PYTHON_VERSION=python3.7
|
|
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="ac_cv_prog_HAS_HG=/bin/false
|
|
ac_cv_prog_SVNVERSION=/bin/false
|
|
--disable-pyc-build
|
|
--disable-ossaudiodev
|
|
--disable-sqlite3
|
|
--disable-codecs-cjk
|
|
--disable-nis
|
|
--enable-unicodedata
|
|
--enable-openssl
|
|
--disable-readline
|
|
--disable-bzip2
|
|
--enable-zlib
|
|
--disable-xz
|
|
--disable-tk
|
|
--disable-curses
|
|
--disable-pydoc
|
|
--disable-test-modules
|
|
--enable-lib2to3
|
|
--disable-idle3
|
|
--without-cxx-main
|
|
--with-expat=builtin
|
|
--with-libmpdec=none
|
|
--with-doc-strings
|
|
--without-pymalloc
|
|
--without-ensurepip
|
|
"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="ac_cv_prog_HAS_HG=/bin/false
|
|
ac_cv_prog_SVNVERSION=/bin/false
|
|
ac_cv_file__dev_ptmx=no
|
|
ac_cv_file__dev_ptc=no
|
|
ac_cv_have_long_long_format=yes
|
|
ac_cv_working_tzset=yes
|
|
ac_cv_func_lchflags_works=no
|
|
ac_cv_func_chflags_works=no
|
|
ac_cv_func_printf_zd=yes
|
|
ac_cv_buggy_getaddrinfo=no
|
|
ac_cv_header_bluetooth_bluetooth_h=no
|
|
ac_cv_header_bluetooth_h=no
|
|
--disable-pyc-build
|
|
--disable-ossaudiodev
|
|
--enable-sqlite3
|
|
--disable-codecs-cjk
|
|
--disable-nis
|
|
--enable-unicodedata
|
|
--enable-openssl
|
|
--enable-readline
|
|
--enable-bzip2
|
|
--enable-zlib
|
|
--disable-xz
|
|
--disable-tk
|
|
--enable-curses
|
|
--disable-pydoc
|
|
--disable-test-modules
|
|
--disable-lib2to3
|
|
--disable-idle3
|
|
--without-cxx-main
|
|
--with-expat=system
|
|
--with-libmpdec=none
|
|
--with-doc-strings
|
|
--without-pymalloc
|
|
--without-ensurepip
|
|
--with-threads
|
|
--enable-ipv6
|
|
"
|
|
|
|
post_unpack() {
|
|
# This is needed to make sure the Python build process doesn't try to
|
|
# regenerate those files with the pgen program. Otherwise, it builds
|
|
# pgen for the target, and tries to run it on the host.
|
|
touch $PKG_BUILD/Include/graminit.h
|
|
touch $PKG_BUILD/Python/graminit.c
|
|
}
|
|
|
|
post_makeinstall_host() {
|
|
rm -f $TOOLCHAIN/bin/python*-config
|
|
rm -f $TOOLCHAIN/bin/smtpd.py*
|
|
rm -f $TOOLCHAIN/bin/pyvenv
|
|
rm -f $TOOLCHAIN/bin/pydoc*
|
|
|
|
rm -fr $PKG_BUILD/.$HOST_NAME/build/temp.*
|
|
|
|
cp $PKG_BUILD/Tools/scripts/reindent.py $TOOLCHAIN/lib/$PKG_PYTHON_VERSION
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
rm -fr $PKG_BUILD/.$TARGET_NAME/build/temp.*
|
|
|
|
PKG_INSTALL_PATH_LIB=$INSTALL/usr/lib/$PKG_PYTHON_VERSION
|
|
|
|
for dir in config compiler sysconfigdata lib-dynload/sysconfigdata lib2to3 test; do
|
|
rm -rf $PKG_INSTALL_PATH_LIB/$dir
|
|
done
|
|
|
|
rm -rf $INSTALL/usr/bin/pyvenv
|
|
rm -rf $INSTALL/usr/bin/python*-config
|
|
rm -rf $INSTALL/usr/bin/smtpd.py $INSTALL/usr/bin/smtpd.py.*
|
|
|
|
$TOOLCHAIN/bin/python3 -Wi -t -B $TOOLCHAIN/lib/$PKG_PYTHON_VERSION/compileall.py -d ${PKG_INSTALL_PATH_LIB#${INSTALL}} -b -f $PKG_INSTALL_PATH_LIB
|
|
find $PKG_INSTALL_PATH_LIB -name "*.py" -exec rm -f {} \; &>/dev/null
|
|
|
|
# strip
|
|
chmod u+w $INSTALL/usr/lib/libpython*.so.*
|
|
debug_strip $INSTALL/usr
|
|
}
|