[package] update ipmitool cubic root patch (#5309)
[openwrt/svn-archive/archive.git] / utils / ipmitool / Makefile
1 # Copyright (C) 2008, OpenWrt.org
2 #
3
4 include $(TOPDIR)/rules.mk
5
6 PKG_NAME:=ipmitool
7 PKG_VERSION:=1.8.10
8 PKG_RELEASE:=1
9
10 PKG_SOURCE:=ipmitool-$(PKG_VERSION).tar.gz
11 PKG_SOURCE_URL:=@SF/ipmitool
12 PKG_MD5SUM:=282f3a3837399eae885512a4026bf5e1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/ipmitool
17 SECTION:=utils
18 CATEGORY:=Utilities
19 DEPENDS:=+libopenssl
20 TITLE:=IPMI remote computer management utility
21 URL:=http://ipmitool.sourceforge.net/
22 endef
23
24 define Package/ipmitool/description
25 IPMItool is a utility for managing and configuring devices
26 that support the Intelligent Platform Management Interface
27 (IPMI) version 1.5 and version 2.0 specifications.
28 endef
29
30 CONFIGURE_ARGS += \
31 --enable-static=no \
32 --enable-internal-md5 \
33 --enable-intf-lan=yes \
34 --enable-intf-lanplus=no \
35 --enable-intf-free=no \
36 --enable-intf-open=no \
37 --enable-intf-imb=no \
38 --enable-intf-lipmi=no \
39 --enable-intf-bmc=no
40
41 define Package/ipmitool/install
42 $(INSTALL_DIR) $(1)/usr/sbin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ipmitool $(1)/usr/sbin/
44 endef
45
46 $(eval $(call BuildPackage,ipmitool))
47