[package] update alsa-utils to 1.0.20 (#5365)
[openwrt/svn-archive/archive.git] / utils / dmidecode / Makefile
1 #
2 # Copyright (C) 2007-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=dmidecode
11 PKG_VERSION:=2.10
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://download.savannah.gnu.org/releases/dmidecode/
16 PKG_MD5SUM:=3c9c4d55a40b78600f3b43bfa64616f9
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/dmidecode
21 SECTION:=utils
22 CATEGORY:=Utilities
23 DEPENDS:=@TARGET_x86
24 TITLE:=Displays BIOS informations.
25 URL:=http://www.nongnu.org/dmidecode/
26 endef
27
28 define Package/dmidecode/description
29 Dmidecode reports information about your system's hardware
30 as described in your system BIOS according to the SMBIOS/DMI
31 standard.
32 endef
33
34 define Package/dmidecode/install
35 $(INSTALL_DIR) $(1)/usr/sbin
36 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin
37 endef
38
39 $(eval $(call BuildPackage,dmidecode))