2018-07-16 20:45:36 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
2018-12-07 17:21:14 +00:00
|
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
2011-01-09 18:45:30 +01:00
|
|
|
|
2013-07-21 00:03:44 +02:00
|
|
|
PKG_NAME="setuptools"
|
2020-01-24 06:04:22 +00:00
|
|
|
PKG_VERSION="45.1.0"
|
|
|
|
|
PKG_SHA256="e545c3d8390a7a664c0243910341c06fc3239b6b3be69a64e7f4ad2fdac1cb24"
|
2010-10-19 20:23:03 +02:00
|
|
|
PKG_LICENSE="OSS"
|
2018-05-28 02:33:56 +01:00
|
|
|
PKG_SITE="https://pypi.org/project/setuptools"
|
2016-12-21 13:19:06 +00:00
|
|
|
PKG_URL="https://github.com/pypa/setuptools/archive/v$PKG_VERSION.tar.gz"
|
2019-10-24 22:51:28 +01:00
|
|
|
PKG_DEPENDS_HOST="Python3:host"
|
2018-10-22 15:06:12 +02:00
|
|
|
PKG_LONGDESC="Replaces Setuptools as the standard method for working with Python module distributions."
|
2017-10-27 13:11:34 +02:00
|
|
|
PKG_TOOLCHAIN="manual"
|
2014-01-21 16:28:20 +01:00
|
|
|
|
|
|
|
|
make_host() {
|
2018-12-07 17:21:14 +00:00
|
|
|
python3 bootstrap.py
|
2014-01-21 16:28:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
makeinstall_host() {
|
2019-02-08 17:17:43 +00:00
|
|
|
exec_thread_safe python3 setup.py install --prefix=$TOOLCHAIN
|
2014-01-21 16:28:20 +01:00
|
|
|
}
|