309b466a1d
This patch bumps to mono 5.0.1.1 and updates the unit tests patch accordingly. The latest version of mono carries a bit of changes in the monolite package: the version string changes and from now on, monolite should be installed in a subdirectory with the exact version string as a name. Therefore, mono and monolite are bumped in a single commit. Patch 0004, although applied in upstream master, is not yet in this (stable) release. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> [Arnout: squashed the patches, removed /usr part from HOST_DIR] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
18 lines
559 B
Makefile
18 lines
559 B
Makefile
################################################################################
|
|
#
|
|
# monolite
|
|
#
|
|
################################################################################
|
|
|
|
MONOLITE_VERSION = 1050001000
|
|
MONOLITE_SITE = http://download.mono-project.com/monolite/
|
|
MONOLITE_SOURCE = monolite-$(MONOLITE_VERSION)-latest.tar.gz
|
|
MONOLITE_LICENSE = LGPL-2.0 or commercial
|
|
|
|
define HOST_MONOLITE_INSTALL_CMDS
|
|
mkdir -p $(HOST_DIR)/lib/monolite/$(MONOLITE_VERSION)
|
|
cp -r $(@D)/* $(HOST_DIR)/lib/monolite/$(MONOLITE_VERSION)
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|