2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://download.savannah.gnu.org/releases/dmidecode/
16 PKG_MD5SUM:=3dac4b1817012ffebd78671473d8f56c
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20 include $(INCLUDE_DIR)/package.mk
22 define Package/dmidecode
26 TITLE:=Displays BIOS informations.
27 URL:=http://www.nongnu.org/dmidecode/
30 define Package/dmidecode/description
31 Dmidecode reports information about your system's hardware
32 as described in your system BIOS according to the SMBIOS/DMI
36 define Package/dmidecode/install
37 $(INSTALL_DIR) $(1)/usr/sbin
38 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin
41 $(eval $(call BuildPackage,dmidecode))