File: mmdblua-0.2-0.rockspec

package info (click to toggle)
lua-mmdb 0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: makefile: 6
file content (24 lines) | stat: -rw-r--r-- 405 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 = "mmdblua"
version = "0.2-0"

source = {
	url = "https://github.com/daurnimator/mmdblua/archive/v0.2.zip";
	dir = "mmdblua-0.2";
}

description = {
	summary = "Library for reading MaxMind's Geolocation database format.";
	license = "MIT";
}

dependencies = {
	"lua >= 5.1";
	"compat53 >= 0.3"; -- Only if lua < 5.3
}

build = {
	type = "builtin";
	modules = {
		["mmdb"] = "mmdb/init.lua";
	};
}