blob: 14440768426e0a779bd537ffcc8c8c7426818a5f (
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
|
# luajit.pc -- pkg-config data for LuaJIT
# vars from install Makefile
# grep '^J*V=' ../Makefile
V= 5.1
JV= 1.1.7
# grep '^INSTALL_.*=' ../Makefile | sed 's/INSTALL_TOP/prefix/'
prefix= /usr/local
INSTALL_BIN= ${prefix}/bin
INSTALL_INC= ${prefix}/include
INSTALL_LIB= ${prefix}/lib
INSTALL_MAN= ${prefix}/man/man1
INSTALL_LMOD= ${prefix}/share/lua/${V}
INSTALL_CMOD= ${prefix}/lib/lua/${V}
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: LuaJIT
Description: An Extensible Extension Language (JIT compiled for speed)
Version: ${JV}
Requires:
Libs: -L${libdir} -llua -lm
Cflags: -I${includedir}
|