56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2007 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:=i2c-tools
|
||
|
PKG_VERSION:=3.0.0
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_SOURCE:=i2c-tools-$(PKG_VERSION).tar.bz2
|
||
|
PKG_SOURCE_URL:=http://dl.lm-sensors.org/i2c-tools/releases/
|
||
|
PKG_MD5SUM:=aeaa1d5d7b35faf096e5663c5fd823dc
|
||
|
|
||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/i2c-tools-$(PKG_VERSION)
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
define Package/i2c-tools
|
||
|
SECTION:=utils
|
||
|
CATEGORY:=Utilities
|
||
|
TITLE:=I2C tools for Linux
|
||
|
DEPENDS:=@LINUX_2_6
|
||
|
URL:=http://www.lm-sensors.org/
|
||
|
endef
|
||
|
|
||
|
define Package/i2c-tools/description
|
||
|
This package contains an heterogeneous set of I2C tools for Linux. These tools
|
||
|
were originally part of the lm-sensors package.
|
||
|
Includes:
|
||
|
- i2cdetect
|
||
|
- i2cdump
|
||
|
- i2cget
|
||
|
- i2cset
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||
|
LINUX="$(LINUX_DIR)" \
|
||
|
CC="$(TARGET_CC)" \
|
||
|
STAGING_DIR="$(STAGING_DIR)"
|
||
|
endef
|
||
|
|
||
|
define Package/i2c-tools/install
|
||
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tools/i2cdetect $(1)/usr/sbin/
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tools/i2cdump $(1)/usr/sbin/
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tools/i2cset $(1)/usr/sbin/
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tools/i2cget $(1)/usr/sbin/
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,i2c-tools))
|