aboutsummaryrefslogtreecommitdiffstats
path: root/util/dependencies.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-01-06 11:10:24 +0100
committerKim Alvefur <zash@zash.se>2017-01-06 11:10:24 +0100
commit43cc8f2d9de3fbe5fca99ed7980b921e06c683a4 (patch)
tree1f84f93b94a092bce507f4daeb0be4b64a494023 /util/dependencies.lua
parentb95406c413b9f91fd8bdf2b386c8e9edf525dedb (diff)
downloadprosody-43cc8f2d9de3fbe5fca99ed7980b921e06c683a4.tar.gz
prosody-43cc8f2d9de3fbe5fca99ed7980b921e06c683a4.zip
util.dependencies: Update Debian package names for liblua5.1-lib0 -> lua-lib transition
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r--util/dependencies.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index d2024c4f..5d8446da 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -61,7 +61,7 @@ local function check_dependencies()
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 @@ local function check_dependencies()
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 @@ local function check_dependencies()
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;