9ab41ebd59
Update the lm-Sensors Makefile to new the release (3.1.2). Enable package selection on other platforms. Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> git-svn-id: svn://svn.openwrt.org/openwrt/packages@22491 3c298f89-4303-0410-b956-a3cf2f4a3e73
82 lines
1.8 KiB
Makefile
82 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=lm-sensors
|
|
PKG_VERSION:=3.1.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=lm_sensors-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://dl.lm-sensors.org/lm-sensors/releases/
|
|
PKG_MD5SUM:=58a9a225808ac4587c4c8cbd12b40b5c
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/lm_sensors-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/lm-sensors/Default
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=lm-sensors
|
|
DEPENDS:=+sysfsutils
|
|
URL:=http://www.lm-sensors.org/
|
|
endef
|
|
|
|
define Package/lm-sensors
|
|
$(call Package/lm-sensors/Default)
|
|
TITLE+=(programs)
|
|
DEPENDS+=+libsensors
|
|
endef
|
|
|
|
define Package/libsensors
|
|
$(call Package/lm-sensors/Default)
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE+=libraries
|
|
endef
|
|
|
|
define Package/lm-sensors/description
|
|
Utility to read hardware sensor data
|
|
endef
|
|
|
|
define Package/libsensors/description
|
|
lm-sensors libraries
|
|
endef
|
|
|
|
define Package/lm-sensors/conffiles
|
|
/etc/sensors.conf
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
KERNELVERSION="$(LINUX_VERSION)" \
|
|
LINUX="$(LINUX_DIR)" \
|
|
CC="$(TARGET_CC)" \
|
|
STAGING_DIR="$(STAGING_DIR)" \
|
|
PREFIX="/usr" \
|
|
MACHINE="$(ARCH)" \
|
|
user
|
|
endef
|
|
|
|
define Package/lm-sensors/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/prog/sensors/sensors $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/prog/detect/sensors-detect $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_CONF) ./files/sensors.conf $(1)/etc/sensors.conf
|
|
endef
|
|
|
|
define Package/libsensors/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/lib/libsensors.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
|
|
$(eval $(call BuildPackage,lm-sensors))
|
|
$(eval $(call BuildPackage,libsensors))
|