1

I need to install liblua5.3-dev for compiling a code project called Domoticz. I tried using 'brew' and 'luarocks' but it seems it doesn't provide me the development libraries but only a runtime/interpretor. How do I install liblua5.3-dev on macOS (Catalina)?

Huupke
  • 1,158
  • 1
  • 13
  • 25

1 Answers1

2

You should just try the official way:

curl -R -O http://www.lua.org/ftp/lua-5.3.5.tar.gz
tar zxf lua-5.3.5.tar.gz
cd lua-5.3.5
make macosx test
Ortomala Lokni
  • 56,620
  • 24
  • 188
  • 240