mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
19 lines
793 B
Makefile
19 lines
793 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2024-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="pyinstaller"
|
|
PKG_VERSION="0.7.0"
|
|
PKG_SHA256="a26d3e3116289bb08216e0d0f7d925fcef0b0194eedfa0c944bcaaa106c4b631"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://pypi.org/project/installer/"
|
|
PKG_URL="https://files.pythonhosted.org/packages/source/i/installer/installer-${PKG_VERSION}.tar.gz"
|
|
PKG_SOURCE_DIR="installer-${PKG_VERSION}"
|
|
PKG_DEPENDS_HOST="flit:host"
|
|
PKG_LONGDESC="installer provides basic functionality and abstractions for handling wheels and installing packages from wheels."
|
|
PKG_TOOLCHAIN="python-flit"
|
|
|
|
makeinstall_host() {
|
|
# simple bootstrap install, but should be able to call itself if needed
|
|
unzip -o -d ${TOOLCHAIN}/lib/${PKG_PYTHON_VERSION}/site-packages dist/*.whl
|
|
}
|