mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 07:56:21 +00:00
17 lines
651 B
Makefile
17 lines
651 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="Jinja2"
|
|
PKG_VERSION="3.1.2"
|
|
PKG_SHA256="31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"
|
|
PKG_LICENSE="BSD"
|
|
PKG_SITE="https://pypi.org/project/Jinja2/"
|
|
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 MarkupSafe:host"
|
|
PKG_LONGDESC="Jinja is a fast, expressive, extensible templating engine."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_host() {
|
|
exec_thread_safe python3 setup.py install --prefix=${TOOLCHAIN}
|
|
}
|