Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
658 B

  1. # lua.pc -- pkg-config data for Lua
  2. # vars from install Makefile
  3. # grep '^V=' ../Makefile
  4. V= 5.1
  5. # grep '^R=' ../Makefile
  6. R= 5.1.4
  7. # grep '^INSTALL_.*=' ../Makefile | sed 's/INSTALL_TOP/prefix/'
  8. prefix= /usr/local
  9. INSTALL_BIN= ${prefix}/bin
  10. INSTALL_INC= ${prefix}/include
  11. INSTALL_LIB= ${prefix}/lib
  12. INSTALL_MAN= ${prefix}/man/man1
  13. INSTALL_LMOD= ${prefix}/share/lua/${V}
  14. INSTALL_CMOD= ${prefix}/lib/lua/${V}
  15. # canonical vars
  16. exec_prefix=${prefix}
  17. libdir=${exec_prefix}/lib
  18. includedir=${prefix}/include
  19. Name: Lua
  20. Description: An Extensible Extension Language
  21. Version: ${R}
  22. Requires:
  23. Libs: -L${libdir} -llua -lm
  24. Cflags: -I${includedir}
  25. # (end of lua.pc)