Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame^] | 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 | |
| 10 | SRC_URI = "ftp://alpha.gnu.org/gnu/${BPN}/${BP}.tar.gz" |
| 11 | |
| 12 | inherit autotools gettext texinfo update-alternatives |
| 13 | |
| 14 | ALTERNATIVE_${PN} = "find xargs" |
| 15 | ALTERNATIVE_PRIORITY = "100" |
| 16 | |
| 17 | # diffutils assumes non-glibc compilation with uclibc and |
| 18 | # this causes it to generate its own implementations of |
| 19 | # standard functionality. regex.c actually breaks compilation |
| 20 | # because it uses __mempcpy, there are other things (TBD: |
| 21 | # see diffutils.mk in buildroot) |
| 22 | EXTRA_OECONF_libc-uclibc = "--without-included-regex" |
| 23 | |
| 24 | BBCLASSEXTEND = "native nativesdk" |