9f59b378a3
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
777 B
Makefile
27 lines
777 B
Makefile
################################################################################
|
|
#
|
|
# acpica
|
|
#
|
|
################################################################################
|
|
|
|
ACPICA_VERSION = 20161117
|
|
ACPICA_SOURCE = acpica-unix2-$(ACPICA_VERSION).tar.gz
|
|
ACPICA_SITE = https://acpica.org/sites/acpica/files
|
|
ACPICA_LICENSE = BSD-3-Clause or GPL-2.0
|
|
ACPICA_LICENSE_FILES = source/include/acpi.h
|
|
ACPICA_DEPENDENCIES = host-bison host-flex
|
|
|
|
define ACPICA_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
HARDWARE_NAME=$(BR2_ARCH) HOST=_LINUX CC="$(TARGET_CC)" \
|
|
all
|
|
endef
|
|
|
|
define ACPICA_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
HARDWARE_NAME=$(BR2_ARCH) DESTDIR="$(TARGET_DIR)" \
|
|
INSTALLFLAGS=-m755 install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|