mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Since the following commit applied in oe-core ... 21f0c5a distutils/setuptools, distutils3/setuptools3: improve reproducibility ... It unified var-DISTUTILS_INSTALL_ARGS in distutils and setuptools, so clean up the duplicated var-DISTUTILS_INSTALL_ARGS in each recipe. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
724 B
BlitzBasic
30 lines
724 B
BlitzBasic
DESCRIPTION = "langtable is used to guess reasonable defaults for locale,\
|
|
keyboard, territory"
|
|
HOMEPAGE = "https://github.com/mike-fabian/langtable/"
|
|
LICENSE = "GPLv3+"
|
|
SECTION = "devel/python"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
S = "${WORKDIR}/git"
|
|
B = "${S}"
|
|
|
|
SRCREV = "35687ca957b746f153a6872139462b1443f8cad1"
|
|
PV = "0.0.38+git${SRCPV}"
|
|
SRC_URI = "git://github.com/mike-fabian/langtable.git;branch=master \
|
|
"
|
|
|
|
inherit setuptools3 python3native
|
|
|
|
DISTUTILS_INSTALL_ARGS += " \
|
|
--install-data=${datadir}/langtable"
|
|
|
|
FILES_${PN} += "${datadir}/*"
|
|
|
|
RDEPENDS_${PN} += " \
|
|
${PYTHON_PN}-compression \
|
|
${PYTHON_PN}-doctest \
|
|
${PYTHON_PN}-logging \
|
|
${PYTHON_PN}-xml \
|
|
"
|