# # Copyright (C) 2007-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=dmidecode PKG_VERSION:=3.0 PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@SAVANNAH/$(PKG_NAME) PKG_HASH:=7ec35bb193729c1d593a1460b59d82d24b89102ab23fd0416e6cf4325d077e45 PKG_MAINTAINER:=Álvaro Fernández Rojas PKG_LICENSE:=GPL-2.0 PKG_LICENSE_FILES:=LICENSE PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk define Package/dmidecode SECTION:=utils CATEGORY:=Utilities DEPENDS:=@(TARGET_x86||TARGET_x86_64) TITLE:=Displays BIOS informations. URL:=http://www.nongnu.org/dmidecode/ endef define Package/dmidecode/description Dmidecode reports information about your system's hardware as described in your system BIOS according to the SMBIOS/DMI standard. endef MAKE_FLAGS += \ prefix="/usr" define Package/dmidecode/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/$(PKG_NAME) $(1)/usr/sbin/ endef $(eval $(call BuildPackage,dmidecode))