fa8877fb02
This reverts commit dc171f123c
, which was
aimed at the next branch, not master.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
27 lines
779 B
Makefile
27 lines
779 B
Makefile
################################################################################
|
|
#
|
|
# smartmontools
|
|
#
|
|
################################################################################
|
|
|
|
SMARTMONTOOLS_VERSION = 6.5
|
|
SMARTMONTOOLS_SITE = http://downloads.sourceforge.net/project/smartmontools/smartmontools/$(SMARTMONTOOLS_VERSION)
|
|
SMARTMONTOOLS_LICENSE = GPL-2.0+
|
|
SMARTMONTOOLS_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCAP_NG),y)
|
|
SMARTMONTOOLS_CONF_OPTS += --with-libcap-ng
|
|
SMARTMONTOOLS_DEPENDENCIES += libcap-ng
|
|
else
|
|
SMARTMONTOOLS_CONF_OPTS += --without-libcap-ng
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
SMARTMONTOOLS_CONF_OPTS += --with-selinux
|
|
SMARTMONTOOLS_DEPENDENCIES += libselinux
|
|
else
|
|
SMARTMONTOOLS_CONF_OPTS += --without-selinux
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|