1c08a2d5fd
The current version of lightning doesn't build with recent versions of binutils. Since this has been fixed upstream in a dot release, let's bump to the upstream version that has the fix. While at it, add a hash for the license file. Fixes: http://autobuild.buildroot.net/results/51424c044e11b89544824dbdf1af45b05b499ba4/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
522 B
Makefile
19 lines
522 B
Makefile
################################################################################
|
|
#
|
|
# lightning
|
|
#
|
|
################################################################################
|
|
|
|
LIGHTNING_VERSION = 2.1.2
|
|
LIGHTNING_SITE = $(BR2_GNU_MIRROR)/lightning
|
|
LIGHTNING_LICENSE = LGPL-3.0+
|
|
LIGHTNING_LICENSE_FILES = COPYING.LESSER
|
|
LIGHTNING_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTNING_DISASSEMBLER),y)
|
|
LIGHTNING_DEPENDENCIES += binutils zlib
|
|
LIGHTNING_CONF_OPTS += --enable-disassembler
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|