mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
the filename has been changed to lowercase in the 3.1.4 download
revert drop of setuptools:
- 20477c6357
18 lines
686 B
Makefile
18 lines
686 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="Jinja2"
|
|
PKG_VERSION="3.1.4"
|
|
PKG_SHA256="4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"
|
|
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() {
|
|
export DONT_BUILD_LEGACY_PYC=1
|
|
exec_thread_safe python3 setup.py install --prefix=${TOOLCHAIN}
|
|
}
|