mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
44 lines
1.1 KiB
Lua
44 lines
1.1 KiB
Lua
package = "LuaFileSystem"
|
|
version = "cvs-1"
|
|
source = {
|
|
url = "cvs://:pserver:anonymous:@cvs.luaforge.net:/cvsroot/luafilesystem",
|
|
cvs_tag = "HEAD"
|
|
}
|
|
description = {
|
|
summary = "File System Library for the Lua Programming Language",
|
|
detailed = [[
|
|
LuaFileSystem is a Lua library developed to complement the set of
|
|
functions related to file systems offered by the standard Lua
|
|
distribution. LuaFileSystem offers a portable way to access the
|
|
underlying directory structure and file attributes.
|
|
]]
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.1"
|
|
}
|
|
build = {
|
|
platforms = {
|
|
unix = {
|
|
type = "make",
|
|
build_variables = {
|
|
LIB_OPTION = "$(LIBFLAG)",
|
|
CFLAGS = "$(CFLAGS) -I$(LUA_INCDIR)",
|
|
},
|
|
install_variables = {
|
|
LUA_LIBDIR = "$(LIBDIR)"
|
|
}
|
|
},
|
|
win32 = {
|
|
type = "make",
|
|
build_variables = {
|
|
LUA_LIB = "$(LUA_LIBDIR)\\lua5.1.lib",
|
|
CFLAGS = "$(CFLAGS) /I$(LUA_INCDIR)",
|
|
},
|
|
install_variables = {
|
|
LUA_LIBDIR = "$(LIBDIR)",
|
|
LUA_DIR = "$(LUADIR)",
|
|
BIN_DIR = "$(BINDIR)"
|
|
}
|
|
}
|
|
}
|
|
}
|