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