Skip to content

Commit e951915

Browse files
committed
Rewrote rockspec to use the luarocks module build-type. Deprecates Makefile
1 parent 5feba87 commit e951915

File tree

2 files changed

+31
-26
lines changed

2 files changed

+31
-26
lines changed

lua-tinycdb-0.1-1.rockspec

Lines changed: 0 additions & 26 deletions
This file was deleted.

lua-tinycdb-dev-1.rockspec

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package="lua-tinycdb"
2+
version="dev-1"
3+
source = {
4+
url = ""
5+
}
6+
description = {
7+
summary = "Provides support for creating and reading constant databases",
8+
homepage = "http://asbradbury.org/projects/lua-tinycdb/",
9+
license = "MIT/X11"
10+
}
11+
dependencies = {
12+
"lua >= 5.1"
13+
}
14+
build = {
15+
type = "module",
16+
modules = {
17+
cdb = {
18+
"cdb_find.c",
19+
"cdb_findnext.c",
20+
"cdb_hash.c",
21+
"cdb_init.c",
22+
"cdb_make_add.c",
23+
"cdb_make.c",
24+
"cdb_make_put.c",
25+
"cdb_seek.c",
26+
"cdb_seq.c",
27+
"cdb_unpack.c",
28+
"lcdb.c"
29+
}
30+
}
31+
}

0 commit comments

Comments
 (0)