mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
05a4e5d5a5
For change log since 20230628, see [1].
License file hash changed in [2], due to year update.
The upstream download page also changed the published hash from sha1
to sha256. This change is reflected in the hash file.
[1] https://github.com/acpica/acpica/blob/G20240322/documents/changes.txt
[2] c18edfb1ab
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# acpica
|
|
#
|
|
################################################################################
|
|
|
|
ACPICA_VERSION = 20240321
|
|
ACPICA_SOURCE = acpica-unix-$(ACPICA_VERSION).tar.gz
|
|
ACPICA_SITE = https://downloadmirror.intel.com/819451
|
|
ACPICA_LICENSE = BSD-3-Clause or GPL-2.0
|
|
ACPICA_LICENSE_FILES = source/include/acpi.h
|
|
ACPICA_DEPENDENCIES = host-bison host-flex
|
|
HOST_ACPICA_DEPENDENCIES = host-bison host-flex
|
|
|
|
define ACPICA_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
ACPI_HOST=_LINUX CC="$(TARGET_CC)" \
|
|
NOWERROR=TRUE \
|
|
all
|
|
endef
|
|
|
|
define HOST_ACPICA_BUILD_CMDS
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
NOWERROR=TRUE \
|
|
all
|
|
endef
|
|
|
|
define ACPICA_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
DESTDIR="$(TARGET_DIR)" \
|
|
INSTALLFLAGS=-m755 install
|
|
endef
|
|
|
|
define HOST_ACPICA_INSTALL_CMDS
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
PREFIX="$(HOST_DIR)" \
|
|
INSTALLFLAGS=-m755 install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
$(eval $(host-generic-package))
|