mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-31 13:20:03 +00:00
a47c3a26f3
newer gnulib-tool wrappers try to run a sibling Python launcher file, .gnulib-tool.py, when Python 3 is available. In current gnulib, that file is a real part of the tree, and gnulib-tool will exec "$prog.py" in that mode Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
37 lines
1.3 KiB
BlitzBasic
37 lines
1.3 KiB
BlitzBasic
SUMMARY = "The GNU portability library"
|
|
DESCRIPTION = "A collection of software subroutines which are designed to \
|
|
be usable on many operating systems. The goal of the project \
|
|
is to make it easy for free software authors to make their \
|
|
software run on many operating systems. Since source is designed \
|
|
to be copied from gnulib, it is not a library per-se, as much \
|
|
as a collection of portable idioms to be used in other projects."
|
|
|
|
HOMEPAGE = "http://www.gnu.org/software/gnulib/"
|
|
SECTION = "devel"
|
|
LICENSE = "LGPL-2.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ef5bccbf6e492f82800e68bdeab302eb"
|
|
SRCREV = "4a3650d88725e8fda6387fbdbaa0ed98cdca76ce"
|
|
|
|
SRC_URI = "git://git.savannah.gnu.org/git/gnulib.git;branch=stable-${PV};protocol=https \
|
|
"
|
|
|
|
|
|
do_install () {
|
|
install -d ${D}/${datadir}/gnulib
|
|
cp --no-preserve=ownership --recursive ${S}/* ${D}/${datadir}/gnulib/
|
|
cp --no-preserve=ownership --recursive ${S}/.gnulib-tool.py ${D}/${datadir}/gnulib/
|
|
cp --no-preserve=ownership --recursive ${S}/.git ${D}/${datadir}/gnulib/
|
|
}
|
|
|
|
do_patch[noexec] = "1"
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
do_package[noexec] = "1"
|
|
do_packagedata[noexec] = "1"
|
|
deltask package_write_ipk
|
|
deltask package_write_deb
|
|
deltask package_write_rpm
|
|
|
|
BBCLASSEXTEND = "native"
|