mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
22 lines
720 B
Makefile
22 lines
720 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="setuptools"
|
|
PKG_VERSION="51.0.0"
|
|
PKG_SHA256="64aab833ffcdd05e386e3f18f5a430082b14a4b74522724907f6a9a43ba6ec5e"
|
|
PKG_LICENSE="OSS"
|
|
PKG_SITE="https://pypi.org/project/setuptools"
|
|
PKG_URL="https://github.com/pypa/setuptools/archive/v$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_HOST="Python3:host"
|
|
PKG_LONGDESC="Replaces Setuptools as the standard method for working with Python module distributions."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
make_host() {
|
|
python3 bootstrap.py
|
|
}
|
|
|
|
makeinstall_host() {
|
|
exec_thread_safe python3 setup.py install --prefix=$TOOLCHAIN
|
|
}
|