florian 97d583b27e [package] update i2c-tools to 3.0.2 (#5467)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@16803 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-07-12 12:34:04 +00:00

54 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.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://dl.lm-sensors.org/i2c-tools/releases/
PKG_MD5SUM:=b546345ac19db56719dea6b8199f11e0
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/wiki/I2CTools
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))