mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
Add upstream patch that fixes conflicting definitions of ax25 related structs.
Fixes:
http://autobuild.buildroot.net/results/b40/b40d045f41dc4dbc66d5092ea5e9e045cd825e31/
http://autobuild.buildroot.net/results/367/367199b6071c450159aa2ea74d6d1b4b7cb89a88/
http://autobuild.buildroot.net/results/35e/35e97e51a6f7184d7b708c62a726ab91a0f546b2/
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
(cherry picked from commit 110eb42854)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
992 B
Makefile
34 lines
992 B
Makefile
################################################################################
|
|
#
|
|
# trinity
|
|
#
|
|
################################################################################
|
|
|
|
TRINITY_VERSION = v1.6
|
|
TRINITY_SITE = $(call github,kernelslacker,trinity,$(TRINITY_VERSION))
|
|
TRINITY_LICENSE = GPLv2
|
|
TRINITY_LICENSE_FILES = COPYING
|
|
|
|
TRINITY_PATCH = https://github.com/kernelslacker/trinity/commit/b0e66a2d084ffc210bc1fc247efb4d177e9f7e3d.patch
|
|
|
|
define TRINITY_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure.sh)
|
|
endef
|
|
|
|
define TRINITY_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define TRINITY_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR)/usr install
|
|
endef
|
|
|
|
# Install helper scripts
|
|
define TRINITY_INSTALL_HELPER_SCRIPTS
|
|
mkdir -p $(TARGET_DIR)/usr/libexec/trinity
|
|
cp -p $(@D)/scripts/* $(TARGET_DIR)/usr/libexec/trinity/
|
|
endef
|
|
TRINITY_POST_INSTALL_TARGET_HOOKS += TRINITY_INSTALL_HELPER_SCRIPTS
|
|
|
|
$(eval $(generic-package))
|