diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-02 12:24:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-02 12:30:01 +0000 |
commit | 8ba70a1c28a4e0ee73db5308b38abc923b0be44d (patch) | |
tree | 0ed9bff8e4bd70766c81dbb559d32781bdd93ce8 /recipes-extended/findutils/findutils.inc | |
download | meta-gplv2-8ba70a1c28a4e0ee73db5308b38abc923b0be44d.tar.gz |
Create meta-gplv2 from files from OE-Core
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'recipes-extended/findutils/findutils.inc')
-rw-r--r-- | recipes-extended/findutils/findutils.inc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-extended/findutils/findutils.inc b/recipes-extended/findutils/findutils.inc new file mode 100644 index 0000000..bfedf87 --- /dev/null +++ b/recipes-extended/findutils/findutils.inc | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "find, locate, and xargs binaries" | ||
2 | DESCRIPTION = "The GNU Find Utilities are the basic directory searching utilities of the GNU operating system. \ | ||
3 | These programs are typically used in conjunction with other programs to provide modular and powerful directory \ | ||
4 | search and file locating capabilities to other commands." | ||
5 | HOMEPAGE = "http://www.gnu.org/software/findutils/" | ||
6 | BUGTRACKER = "http://savannah.gnu.org/bugs/?group=findutils" | ||
7 | SECTION = "console/utils" | ||
8 | |||
9 | SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz" | ||
10 | |||
11 | inherit autotools gettext texinfo update-alternatives upstream-version-is-even | ||
12 | |||
13 | ALTERNATIVE_${PN} = "find xargs" | ||
14 | ALTERNATIVE_PRIORITY = "100" | ||
15 | |||
16 | # diffutils assumes non-glibc compilation with uclibc and | ||
17 | # this causes it to generate its own implementations of | ||
18 | # standard functionality. regex.c actually breaks compilation | ||
19 | # because it uses __mempcpy, there are other things (TBD: | ||
20 | # see diffutils.mk in buildroot) | ||
21 | EXTRA_OECONF_libc-uclibc = "--without-included-regex" | ||
22 | |||
23 | BBCLASSEXTEND = "native nativesdk" | ||