The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / pkg-luarocks.mk
1 ################################################################################
2 # LuaRocks package infrastructure
3 # see http://luarocks.org/
4 #
5 # This file implements an infrastructure that eases development of
6 # package .mk files for LuaRocks packages.
7 # LuaRocks supports various build.type : builtin, make, cmake.
8 # This luarocks infrastructure supports only the builtin mode,
9 # the make & cmake modes could be directly handled by generic & cmake infrastructure.
10 #
11 # See the Buildroot documentation for details on the usage of this
12 # infrastructure
13 #
14 # In terms of implementation, this LuaRocks infrastructure requires
15 # the .mk file to only specify metadata information about the
16 # package: name, version, etc.
17 #
18 ################################################################################
19
20 ################################################################################
21 # inner-luarocks-package -- defines how the configuration, compilation and
22 # installation of a LuaRocks package should be done, implements a few hooks to
23 # tune the build process and calls the generic package infrastructure to
24 # generate the necessary make targets
25 #
26 #  argument 1 is the lowercase package name
27 #  argument 2 is the uppercase package name, including a HOST_ prefix
28 #             for host packages
29 #  argument 3 is the uppercase package name, without the HOST_ prefix
30 #             for host packages
31 #  argument 4 is the type (target or host)
32 ################################################################################
33
34 define inner-luarocks-package
35
36 $(2)_BUILD_OPTS         ?=
37 $(2)_SUBDIR             ?= $(1)-$$(shell echo "$$($(3)_VERSION)" | sed -e "s/-[0-9]$$$$//")
38 $(2)_ROCKSPEC           ?= $(1)-$$($(3)_VERSION).rockspec
39 $(2)_SOURCE             ?= $(1)-$$($(3)_VERSION).src.rock
40 $(2)_SITE               ?= $$(call qstrip,$$(BR2_LUAROCKS_MIRROR))
41
42 # Since we do not support host-luarocks-package, we know this is
43 # a target package, and can just add the required dependencies
44 $(2)_DEPENDENCIES       += host-luarocks luainterpreter
45
46 #
47 # Extract step
48 #
49 ifndef $(2)_EXTRACT_CMDS
50 define $(2)_EXTRACT_CMDS
51         cd $$($(2)_DIR)/.. && \
52                 $$(LUAROCKS_RUN) unpack --force $$(DL_DIR)/$$($(2)_SOURCE)
53 endef
54 endif
55
56 #
57 # Build/install step.
58 #
59 ifndef $(2)_INSTALL_TARGET_CMDS
60 define $(2)_INSTALL_TARGET_CMDS
61         cd $$($(2)_SRCDIR) && \
62                 $$(LUAROCKS_RUN) make --keep $$($(2)_ROCKSPEC) $$($(2)_BUILD_OPTS)
63 endef
64 endif
65
66 # Call the generic package infrastructure to generate the necessary
67 # make targets
68 $(call inner-generic-package,$(1),$(2),$(3),$(4))
69
70 # $(2)_DEPENDENCIES are handled for configure step (too late)
71 # but host-luarocks is required to do the extract
72 $$($(2)_TARGET_EXTRACT): | host-luarocks
73
74 endef
75
76 ################################################################################
77 # luarocks-package -- the target generator macro for LuaRocks packages
78 ################################################################################
79
80 luarocks-package = $(call inner-luarocks-package,$(pkgname),$(call UPPERCASE,$(pkgname)),$(call UPPERCASE,$(pkgname)),target)
81 # host-luarocks-package not supported