blob: 0b52994006ac7ca06527a584e59c96edb2bb3842 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# $NetBSD: module.mk,v 1.8 2020/07/09 15:01:53 nia Exp $
#
# This Makefile fragment is intended to be included by packages that
# install Lua modules.
#
# === Defined variables ===
#
# LUA_LDIR
# Path where Lua modules are installed.
#
# LUA_CDIR
# Path where Lua C modules are installed. Not defined if
# NO_BUILD variable is set to "yes".
#
# LUA_DOCDIR
# Path where documentation files are installed.
#
# LUA_EXAMPLESDIR
# Path where example files are installed.
#
# Keywords: lua
#
.if !defined(LUA_MODULE_MK)
LUA_MODULE_MK= # defined
.if !defined(LUA_LUAVERSION_MK)
.include "../../lang/lua/luaversion.mk"
.endif
LUA_LDIR= share/lua/${_LUA_DOT_VERSION}
PLIST_SUBST+= LUA_LDIR=${LUA_LDIR}
PRINT_PLIST_AWK+= /^${LUA_LDIR:S|/|\\/|g}/ \
{ gsub(/${LUA_LDIR:S|/|\\/|g}/, "$${LUA_LDIR}") }
.if defined(NO_BUILD) && empty(NO_BUILD:M[Nn][Oo])
DEPENDS+= ${LUA_BASEDEPENDS}
.else
LUA_CDIR= lib/lua/${_LUA_DOT_VERSION}
PLIST_SUBST+= LUA_CDIR=${LUA_CDIR}
PRINT_PLIST_AWK+= /^${LUA_CDIR:S|/|\\/|g}/ \
{ gsub(/${LUA_CDIR:S|/|\\/|g}/, "$${LUA_CDIR}") }
.include "${LUA_PKGSRCDIR}/buildlink3.mk"
.endif
LUA_DOCDIR= share/doc/${PKGBASE}
PLIST_SUBST+= LUA_DOCDIR=${LUA_DOCDIR}
PRINT_PLIST_AWK+= /^${LUA_DOCDIR:S|/|\\/|g}/ \
{ gsub(/${LUA_DOCDIR:S|/|\\/|g}/, "$${LUA_DOCDIR}") }
LUA_EXAMPLESDIR= share/examples/${PKGBASE}
PLIST_SUBST+= LUA_EXAMPLESDIR=${LUA_EXAMPLESDIR}
LDFLAGS.Cygwin+= -llua${LUA_VERSION_MAJOR}.${LUA_VERSION_MINOR}
.endif # LUA_MODULE_MK
|