mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
package/elixir: new package
elixir is required to build RabbitMQ starting from v3.7 Signed-off-by: Frank Vanbever <frank.vanbever@essensium.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
6cdf1f44e4
commit
14ff0c7389
21
package/elixir/elixir.mk
Normal file
21
package/elixir/elixir.mk
Normal file
@@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# elixir
|
||||
#
|
||||
################################################################################
|
||||
|
||||
ELIXIR_VERSION = 1.9.4
|
||||
ELIXIR_SITE = $(call github,elixir-lang,elixir,v$(ELIXIR_VERSION))
|
||||
ELIXIR_LICENSE = Apache-2.0
|
||||
ELIXIR_LICENSE_FILES = LICENSE
|
||||
ELIXIR_DEPENDENCIES = host-erlang
|
||||
|
||||
define HOST_ELIXIR_BUILD_CMDS
|
||||
$(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) compile
|
||||
endef
|
||||
|
||||
define HOST_ELIXIR_INSTALL_CMDS
|
||||
$(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) PREFIX="$(HOST_DIR)" -C $(@D) install
|
||||
endef
|
||||
|
||||
$(eval $(host-generic-package))
|
||||
Reference in New Issue
Block a user