Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
config BR2_PACKAGE_MOARVM
bool "moarvm"
depends on BR2_TOOLCHAIN_HAS_THREADS # libuv
depends on !BR2_STATIC_LIBS # libuv
depends on BR2_USE_MMU # libuv
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS # libatomic_ops
# needs AO_fetch_compare_and_swap, not implemented for sparcv9
depends on !BR2_sparc64
select BR2_PACKAGE_LIBUV
select BR2_PACKAGE_LIBATOMIC_OPS
help
Short for "Metamodel On A Runtime", MoarVM is a virtual machine
built especially for Rakudo Perl 6 and the NQP Compiler Toolchain.
http://moarvm.com
comment "moarvm needs a toolchain w/ threads, dynamic library"
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
depends on BR2_USE_MMU
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
depends on !BR2_sparc64

View File

@@ -0,0 +1,2 @@
# Locally computed
sha256 d409b684c7c92b144b31cf7f0408f30ccbb033ce646f57d7fbaeb9683773e37b MoarVM-2016.01.tar.gz

View File

@@ -0,0 +1,46 @@
################################################################################
#
# moarvm
#
################################################################################
MOARVM_VERSION = 2016.01
MOARVM_SITE = http://moarvm.com/releases
MOARVM_SOURCE = MoarVM-$(MOARVM_VERSION).tar.gz
MOARVM_LICENSE = Artistic-2.0
MOARVM_LICENSE_FILES = Artistic2.txt
MOARVM_INSTALL_STAGING = YES
MOARVM_DEPENDENCIES = host-luajit libuv libatomic_ops
MOARVM_CONF_OPTS = \
--build=$(GNU_HOST_NAME) \
--host=$(GNU_TARGET_NAME) \
--ar="$(TARGET_AR)" \
--cc="$(TARGET_CC)" \
--ld="$(TARGET_CC)" \
--prefix="/usr" \
--lua=$(HOST_DIR)/usr/bin/luajit \
--has-libuv \
--has-libatomic
ifeq ($(BR2_ENDIAN),"BIG")
MOARVM_CONF_OPTS += --big-endian
endif
define MOARVM_CONFIGURE_CMDS
(cd $(@D); perl Configure.pl $(MOARVM_CONF_OPTS))
endef
define MOARVM_BUILD_CMDS
$(MAKE) -C $(@D)
endef
define MOARVM_INSTALL_STAGING_CMDS
$(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
endef
define MOARVM_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
endef
$(eval $(generic-package))