lua.pc.in 662 B

1234567891011121314151617181920212223242526272829303132
  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.5
  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${V} -lm
  24. Cflags: -I${includedir}
  25. # (end of lua.pc)