169f1194c3
Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
548 B
Makefile
21 lines
548 B
Makefile
################################################################################
|
|
#
|
|
# dmidecode
|
|
#
|
|
################################################################################
|
|
|
|
DMIDECODE_VERSION = 2.12
|
|
DMIDECODE_SITE = http://download.savannah.gnu.org/releases/dmidecode/
|
|
DMIDECODE_LICENSE = GPLv2+
|
|
DMIDECODE_LICENSE_FILES = LICENSE
|
|
|
|
define DMIDECODE_BUILD_CMDS
|
|
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define DMIDECODE_INSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D) prefix=/usr DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|