74d9e5d9b8
This patch bumps mono to version 6.0.0.313 and it's related dependency monolite to version d0aa6798-834d-11e9-b38a-3b0d70487d01. The hash of the mono license file has changed, with the following modification: -* mcs/nunit24: MS-PL - However, this modification is in the "Build Time Code" section, which describes the license of the parts of the code used only at build time, which we don't document in the <pkg>_LICENSE variable. Therefore, no relevant licensing change has occured from the point of view of <pkg>_LICENSE. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> [Thomas: update the hash of the license file, and add a corresponding explanation in the commit log] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
602 B
Makefile
18 lines
602 B
Makefile
################################################################################
|
|
#
|
|
# monolite
|
|
#
|
|
################################################################################
|
|
|
|
MONOLITE_VERSION = d0aa6798-834d-11e9-b38a-3b0d70487d01
|
|
MONOLITE_SITE = http://download.mono-project.com/monolite
|
|
MONOLITE_SOURCE = monolite-linux-$(MONOLITE_VERSION)-latest.tar.gz
|
|
MONOLITE_LICENSE = LGPL-2.0 or commercial
|
|
|
|
define HOST_MONOLITE_INSTALL_CMDS
|
|
mkdir -p $(HOST_DIR)/lib/monolite-linux/$(MONOLITE_VERSION)
|
|
cp -r $(@D)/* $(HOST_DIR)/lib/monolite-linux/$(MONOLITE_VERSION)
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|