mirror of
https://github.com/lunarmodules/luafilesystem.git
synced 2026-07-22 02:53:06 +00:00
24 lines
618 B
Lua
24 lines
618 B
Lua
package = "LuaFileSystem"
|
|
version = "cvs-1"
|
|
source = {
|
|
url = "cvs://:pserver:anonymous:@cvs.luaforge.net:/cvsroot/luafilesystem"
|
|
}
|
|
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 = {
|
|
type = "module",
|
|
modules = {
|
|
lfs = "lfs.c"
|
|
}
|
|
}
|