30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
55 lines
1.9 KiB
Makefile
55 lines
1.9 KiB
Makefile
################################################################################
|
|
#
|
|
# lm-sensors
|
|
#
|
|
################################################################################
|
|
|
|
LM_SENSORS_VERSION = 3.4.0
|
|
LM_SENSORS_SOURCE = lm-sensors_$(LM_SENSORS_VERSION).orig.tar.bz2
|
|
LM_SENSORS_SITE = http://snapshot.debian.org/archive/debian/20170208T211941Z/pool/main/l/lm-sensors
|
|
LM_SENSORS_INSTALL_STAGING = YES
|
|
LM_SENSORS_DEPENDENCIES = host-bison host-flex
|
|
LM_SENSORS_LICENSE = LGPL-2.1+ (libsensors), GPL-2.0+ (programs)
|
|
LM_SENSORS_LICENSE_FILES = COPYING.LGPL COPYING
|
|
|
|
LM_SENSORS_BINS_ = bin/sensors-conf-convert
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_SENSORS) += bin/sensors
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_FANCONTROL) += sbin/fancontrol
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_ISADUMP) += sbin/isadump
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_ISASET) += sbin/isaset
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_PWMCONFIG) += sbin/pwmconfig
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_SENSORS_DETECT) += sbin/sensors-detect
|
|
|
|
LM_SENSORS_MAKE_OPTS = \
|
|
BUILD_STATIC_LIB=1 \
|
|
MACHINE=$(KERNEL_ARCH) \
|
|
PREFIX=/usr
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LM_SENSORS_MAKE_OPTS += BUILD_SHARED_LIB=0
|
|
else
|
|
LM_SENSORS_MAKE_OPTS += BUILD_SHARED_LIB=1
|
|
endif
|
|
|
|
ifeq ($(BR2_SHARED_LIBS),y)
|
|
LM_SENSORS_MAKE_OPTS += BUILD_STATIC_LIB=0
|
|
else
|
|
LM_SENSORS_MAKE_OPTS += BUILD_STATIC_LIB=1
|
|
endif
|
|
|
|
define LM_SENSORS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) $(LM_SENSORS_MAKE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define LM_SENSORS_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(LM_SENSORS_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
|
|
rm -f $(addprefix $(STAGING_DIR)/usr/,$(LM_SENSORS_BINS_) $(LM_SENSORS_BINS_y))
|
|
endef
|
|
|
|
define LM_SENSORS_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(LM_SENSORS_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/,$(LM_SENSORS_BINS_))
|
|
endef
|
|
|
|
$(eval $(generic-package))
|