-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua-path-scm-0.rockspec
48 lines (42 loc) · 1.48 KB
/
lua-path-scm-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package = "lua-path"
version = "scm-0"
source = {
url = "https://github.com/moteus/lua-path/archive/master.zip",
dir = "lua-path-master",
}
description = {
summary = "File system path manipulation library",
detailed = [[
]],
homepage = "https://github.com/moteus/lua-path",
license = "MIT/X11",
}
dependencies = {
"lua >= 5.1, < 5.4",
-- "luafilesystem >= 1.4",
-- "alien >= 0.7.0", -- instead lfs on windows
}
build = {
type = "builtin",
copy_directories = {
"test",
},
modules = {
["path" ] = "lua/path.lua",
["path.fs" ] = "lua/path/fs.lua",
["path.findfile" ] = "lua/path/findfile.lua",
["path.lfs.fs" ] = "lua/path/lfs/fs.lua",
["path.syscall.fs" ] = "lua/path/syscall/fs.lua",
["path.lfs.impl.fs" ] = "lua/path/lfs/impl/fs.lua",
["path.module" ] = "lua/path/module.lua",
["path.win32.alien.fs" ] = "lua/path/win32/alien/fs.lua",
["path.win32.alien.types" ] = "lua/path/win32/alien/types.lua",
["path.win32.alien.utils" ] = "lua/path/win32/alien/utils.lua",
["path.win32.alien.wcs" ] = "lua/path/win32/alien/wcs.lua",
["path.win32.ffi.fs" ] = "lua/path/win32/ffi/fs.lua",
["path.win32.ffi.types" ] = "lua/path/win32/ffi/types.lua",
["path.win32.ffi.wcs" ] = "lua/path/win32/ffi/wcs.lua",
["path.win32.fs" ] = "lua/path/win32/fs.lua",
["path.win32.wcs" ] = "lua/path/win32/wcs.lua",
}
}