aboutsummaryrefslogtreecommitdiffstats
path: root/rockspecs/inet-0.1-1.rockspec
blob: ec17dff6f91df1cd022c659778c395e8e38d420b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
rockspec_format = "3.0"
package = 'inet'
version = '0.1-1'
source = {
	url = 'https://git.2e8.dk/lua-inet.git/snapshot/lua-inet_0.1.tar.gz',
}
description = {
	summary = 'an IP address mangling library',
	homepage = 'https://git.2e8.dk/lua-inet.git/about/',
	labels = { 'network', 'math' },
	license = 'GNU LGPL v3',
}
dependencies = {
	'lua >= 5.2, < 5.5',
	'lpeg >= 0.8.1',
}
build = {
	type = 'builtin',
	modules = {
		['inet'] = 'lua/inet/init.lua',
		['inet.bitops'] = 'lua/inet/bitops/init.lua',
		['inet.bitops.native'] = 'lua/inet/bitops/native.lua',
		['inet.common'] = 'lua/inet/common.lua',
		['inet.core'] = 'lua/inet/core.lua',
		['inet.set'] = 'lua/inet/set.lua',
	},
}