annotate luabuild/rockfiles/luafilesystem-1.6.2-1.rockspec @ 1311:8483375b51c2

<GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
author HackBot
date Wed, 09 Jan 2013 08:36:05 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1311
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
1 package = "LuaFileSystem"
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
2
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
3 version = "1.6.2-1"
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
4
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
5 source = {
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
6 url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.2.tar.gz",
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
7 }
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
8
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
9 description = {
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
10 summary = "File System Library for the Lua Programming Language",
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
11 detailed = [[
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
12 LuaFileSystem is a Lua library developed to complement the set of
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
13 functions related to file systems offered by the standard Lua
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
14 distribution. LuaFileSystem offers a portable way to access the
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
15 underlying directory structure and file attributes.
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
16 ]]
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
17 }
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
18
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
19 dependencies = {
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
20 "lua >= 5.1"
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
21 }
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
22
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
23 build = {
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
24 type = "builtin",
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
25 modules = { lfs = "src/lfs.c" },
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
26 copy_directories = { "doc", "tests" }
8483375b51c2 <GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
HackBot
parents:
diff changeset
27 }