File: fifo-0.2-0.rockspec

package info (click to toggle)
lua-fifo 0.2-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 108 kB
  • sloc: makefile: 6
file content (24 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package = "fifo"
version = "0.2-0"

description= {
	summary = "A lua library/'class' that implements a FIFO";
	homepage = "https://github.com/daurnimator/fifo.lua";
	license = "MIT/X11";
}

dependencies = {
	"lua";
}

source = {
	url = "https://github.com/daurnimator/fifo.lua/archive/0.2.zip";
	dir = "fifo.lua-0.2";
}

build = {
	type = "builtin";
	modules = {
		["fifo"] = "fifo.lua";
	};
}