-
Notifications
You must be signed in to change notification settings - Fork 1
/
physfs-scm-2.rockspec
50 lines (46 loc) · 1.24 KB
/
physfs-scm-2.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
46
47
48
49
50
package = "physfs"
version = "scm-2"
source = {
url = "git://github.com/starwing/lua-physfs"
}
description = {
homepage = "https://github.com/starwing/lua-physfs",
license = "Lua License"
}
dependencies = {}
build = {
type = "builtin",
platforms = {
macosx = {
type = "command",
build_command = "sh osxbuild.sh",
install = { lib = { physfs = "physfs.so" } }
}
},
modules = {
physfs = {
defines = {
"PHYSFS_SUPPORTS_7Z",
"PHYSFS_SUPPORTS_QPAK",
"PHYSFS_SUPPORTS_GRP",
"PHYSFS_SUPPORTS_HOG",
"PHYSFS_SUPPORTS_MVL",
"PHYSFS_SUPPORTS_WAD",
"PHYSFS_SUPPORTS_SLB",
"PHYSFS_SUPPORTS_ISO9660",
},
sources = {
"lua-physfs.c",
"one.c",
"physfs/src/physfs_platform_android.c",
"physfs/src/physfs_platform_haiku.cpp",
"physfs/src/physfs_platform_os2.c",
"physfs/src/physfs_platform_posix.c",
"physfs/src/physfs_platform_qnx.c",
"physfs/src/physfs_platform_unix.c",
"physfs/src/physfs_platform_windows.c",
"physfs/src/physfs_platform_winrt.cpp",
}
}
}
}