pkgsrc/lang/lua/application.mk

24 lines
522 B
Makefile
Raw Normal View History

2014-05-03 15:00:44 +02:00
# $NetBSD: application.mk,v 1.4 2014/05/03 13:00:44 alnsn Exp $
#
# This makefile fragment is intended to be included by packages that
# install Lua scripts.
#
# Package-settable variables:
#
# REPLACE_LUA
2013-10-30 07:53:19 +01:00
# A list of Lua scripts to be installed, relative to ${WRKSRC}.
#
# Keywords: Lua
#
2014-05-03 15:00:44 +02:00
.if !defined(LUA_LUAVERSION_MK)
.include "../../lang/lua/luaversion.mk"
2014-05-03 15:00:44 +02:00
.endif
.if defined(REPLACE_LUA)
REPLACE_INTERPRETER+= lua
REPLACE.lua.old= .*lua
2014-05-03 15:00:44 +02:00
REPLACE.lua.new= ${LUA_INTERPRETER}
REPLACE_FILES.lua= ${REPLACE_LUA}
.endif