Software /
code /
prosody
Diff
util/dependencies.lua @ 7813:56b0ae8cbb02
util.dependencies: Update Debian package names for liblua5.1-lib0 -> lua-lib transition
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 06 Jan 2017 11:10:24 +0100 |
parent | 7779:b1f80447a2b1 |
child | 7820:8a9942086068 |
child | 7875:3fbfd7210d78 |
line wrap: on
line diff
--- a/util/dependencies.lua Thu Jan 05 17:39:15 2017 +0100 +++ b/util/dependencies.lua Fri Jan 06 11:10:24 2017 +0100 @@ -61,7 +61,7 @@ if not lxp then missingdep("luaexpat", { - ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-expat0"; + ["Debian/Ubuntu"] = "sudo apt-get install lua-expat"; ["luarocks"] = "luarocks install luaexpat"; ["Source"] = "http://matthewwild.co.uk/projects/luaexpat/"; }); @@ -72,7 +72,7 @@ if not socket then missingdep("luasocket", { - ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-socket2"; + ["Debian/Ubuntu"] = "sudo apt-get install lua-socket"; ["luarocks"] = "luarocks install luasocket"; ["Source"] = "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/"; }); @@ -83,7 +83,7 @@ if not lfs then missingdep("luafilesystem", { ["luarocks"] = "luarocks install luafilesystem"; - ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-filesystem0"; + ["Debian/Ubuntu"] = "sudo apt-get install lua-filesystem"; ["Source"] = "http://www.keplerproject.org/luafilesystem/"; }); fatal = true;