80ed2b96d3
Initial work done by Michael Mogenson. Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
68 lines
2.2 KiB
Makefile
68 lines
2.2 KiB
Makefile
############################################################################
|
|
# apps/interpreters/luamodules/luv/Makefile
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
############################################################################
|
|
|
|
include $(APPDIR)/Make.defs
|
|
|
|
# Luv library
|
|
|
|
LUV_VERSION = $(patsubst "%",%,$(strip $(CONFIG_LUA_LUV_VERSION)))
|
|
LUV_TARBALL = luv-$(LUV_VERSION).tar.gz
|
|
LUV_UNPACK = luv
|
|
LUV_URL_BASE = https://github.com/luvit/luv/releases/download/
|
|
LUV_URL = $(LUV_URL_BASE)/$(LUV_VERSION)/$(LUV_TARBALL)
|
|
LUV_SRC = $(LUV_UNPACK)$(DELIM)src
|
|
|
|
VPATH += $(LUV_SRC)
|
|
CSRCS = luv.c
|
|
|
|
# Luv download and unpack
|
|
|
|
$(LUV_TARBALL):
|
|
$(Q) echo "Downloading $(LUV_TARBALL)"
|
|
$(Q) curl -O -L $(LUV_URL)
|
|
|
|
$(LUV_UNPACK): $(LUV_TARBALL)
|
|
$(Q) echo "Unpacking $(LUV_TARBALL) to $(LUV_UNPACK)"
|
|
$(Q) tar -xvzf $(LUV_TARBALL)
|
|
$(Q) mv luv-$(LUV_VERSION) $(LUV_UNPACK)
|
|
$(Q) patch -d $(LUV_UNPACK) -p1 < 0001-fix-compile-warnings.patch
|
|
|
|
$(LUV_UNPACK)/.patch: $(LUV_UNPACK)
|
|
touch $(LUV_UNPACK)/.patch
|
|
|
|
# Download and unpack tarball if no git repo found
|
|
ifeq ($(wildcard $(LUV_UNPACK)/.git),)
|
|
distclean::
|
|
$(call DELDIR, $(LUV_UNPACK))
|
|
$(call DELFILE, $(LUV_TARBALL))
|
|
|
|
context:: $(LUV_UNPACK)/.patch
|
|
endif
|
|
|
|
# Set LUAMODNAME and include Module.mk to add this module to the list of
|
|
# builtin modules for the Lua interpreter. LUAMODNAME should match the
|
|
# module's luaopen function.
|
|
|
|
LUAMODNAME = luv
|
|
|
|
include $(APPDIR)/interpreters/lua/Module.mk
|
|
|
|
include $(APPDIR)/Application.mk
|