[patchteam] - Daemonlogger is a packet logger and soft tap developed by Martin Roesch...
[openwrt/svn-archive/archive.git] / utils / dmidecode / Makefile
1 #
2 # Copyright (C) 2007-2011 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.11
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:=535487cc041f2db746587cf40a2059f0
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/dmidecode
23 SECTION:=utils
24 CATEGORY:=Utilities
25 DEPENDS:=@TARGET_x86
26 TITLE:=Displays BIOS informations.
27 URL:=http://www.nongnu.org/dmidecode/
28 endef
29
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
33 standard.
34 endef
35
36 MAKE_FLAGS += \
37 prefix="/usr"
38
39 define Package/dmidecode/install
40 $(INSTALL_DIR) $(1)/usr/sbin
41 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/$(PKG_NAME) $(1)/usr/sbin/
42 endef
43
44 $(eval $(call BuildPackage,dmidecode))