Comparison

util/dependencies.lua @ 2298:508d9dc70bb4

util.dependencies: Fix package name of LuaFilesystem
author Matthew Wild <mwild1@gmail.com>
date Wed, 02 Dec 2009 22:13:31 +0000
parent 2169:c06fdb6b57bd
child 2299:b7d25e1ac716
child 2815:84123bcfa0ba
comparison
equal deleted inserted replaced
2261:13d55c66bf81 2298:508d9dc70bb4
51 51
52 local lfs, err = softreq "lfs" 52 local lfs, err = softreq "lfs"
53 if not lfs then 53 if not lfs then
54 missingdep("luafilesystem", { 54 missingdep("luafilesystem", {
55 ["luarocks"] = "luarocks install luafilesystem"; 55 ["luarocks"] = "luarocks install luafilesystem";
56 ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-luafilesystem0"; 56 ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-filesystem0";
57 ["Source"] = "http://www.keplerproject.org/luafilesystem/"; 57 ["Source"] = "http://www.keplerproject.org/luafilesystem/";
58 }); 58 });
59 fatal = true; 59 fatal = true;
60 end 60 end
61 61