0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-04-04 12:45:20 +00:00

ply: copy package to L4T and adapt it for manual build

This commit is contained in:
Tomáš Kelemen (vudiq)
2025-03-05 09:47:35 +01:00
parent e9033595b4
commit 35d860bf23

@ -0,0 +1,17 @@
# SPDX-License-Identifier: GPL-2.0-only
# Copyright (C) 2025-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="ply"
PKG_VERSION="3.11"
PKG_SHA256="00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3"
PKG_LICENSE="BSD-3-Clause"
PKG_SITE="https://pypi.org/project/ply"
PKG_URL="https://files.pythonhosted.org/packages/source/${PKG_NAME:0:1}/${PKG_NAME}/${PKG_NAME}-${PKG_VERSION}.tar.gz"
PKG_DEPENDS_HOST="Python3:host setuptools:host"
PKG_LONGDESC="PLY is yet another implementation of lex and yacc for Python."
PKG_TOOLCHAIN="manual"
makeinstall_host() {
export DONT_BUILD_LEGACY_PYC=1
exec_thread_safe python3 setup.py install --prefix=${TOOLCHAIN}
}