1################################################################################
2#
3# findutils
4#
5################################################################################
6
7FINDUTILS_VERSION = 4.9.0
8FINDUTILS_SOURCE = findutils-$(FINDUTILS_VERSION).tar.xz
9FINDUTILS_SITE = $(BR2_GNU_MIRROR)/findutils
10FINDUTILS_LICENSE = GPL-3.0+
11FINDUTILS_LICENSE_FILES = COPYING
12FINDUTILS_CPE_ID_VENDOR = gnu
13FINDUTILS_CONF_ENV = \
14	gl_cv_func_stdin=yes \
15	ac_cv_func_working_mktime=yes \
16	gl_cv_func_wcwidth_works=yes
17
18ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
19FINDUTILS_DEPENDENCIES += libselinux
20FINDUTILS_CONF_OPTS += --with-selinux
21else
22FINDUTILS_CONF_OPTS += --without-selinux
23endif
24
25$(eval $(autotools-package))
26