aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAsbjørn Sloth Tønnesen <ast@2e8.dk>2023-04-03 17:34:23 +0000
committerAsbjørn Sloth Tønnesen <ast@2e8.dk>2023-04-03 17:34:23 +0000
commit22ec1d9f4a89bb00615898faa6093629adb8e617 (patch)
tree96ad808d040525759f064b629df9021428e82b83
parent7d6bae27cc46c2a587e8e8c3515b1322c8271ed2 (diff)
downloadlua-inet-master.tar.gz
lua-inet-master.tar.xz
lua-inet-master.zip
Signed-off-by: Asbjørn Sloth Tønnesen <ast@2e8.dk>
-rw-r--r--rockspecs/inet-0.3.0-1.rockspec27
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/inet-0.3.0-1.rockspec b/rockspecs/inet-0.3.0-1.rockspec
new file mode 100644
index 0000000..bffbf28
--- /dev/null
+++ b/rockspecs/inet-0.3.0-1.rockspec
@@ -0,0 +1,27 @@
+rockspec_format = "3.0"
+package = 'inet'
+version = '0.3.0-1'
+source = {
+ url = 'https://git.2e8.dk/lua-inet/snapshot/lua-inet_0.3.0.tar.gz',
+}
+description = {
+ summary = 'an IP address mangling library',
+ homepage = 'https://git.2e8.dk/lua-inet/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',
+ },
+}