diff options
author | Asbjørn Sloth Tønnesen <ast@2e8.dk> | 2019-07-30 19:24:10 +0000 |
---|---|---|
committer | Asbjørn Sloth Tønnesen <ast@2e8.dk> | 2019-07-30 20:18:00 +0000 |
commit | 6009360e99762e1b3fe4564db3460bcccb9dcbce (patch) | |
tree | 8d64cd672138e5ce18cb7cea6e65e478f3be42d8 /rockspecs | |
parent | 9c31bbc8cfd2ea8cfe2740c47c045e1773725315 (diff) | |
download | lua-inet-6009360e99762e1b3fe4564db3460bcccb9dcbce.tar.gz lua-inet-6009360e99762e1b3fe4564db3460bcccb9dcbce.tar.xz lua-inet-6009360e99762e1b3fe4564db3460bcccb9dcbce.zip |
add release v0.1
Signed-off-by: Asbjørn Sloth Tønnesen <ast@2e8.dk>
Diffstat (limited to 'rockspecs')
-rw-r--r-- | rockspecs/inet-0.1-1.rockspec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/inet-0.1-1.rockspec b/rockspecs/inet-0.1-1.rockspec new file mode 100644 index 0000000..ec17dff --- /dev/null +++ b/rockspecs/inet-0.1-1.rockspec @@ -0,0 +1,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', + }, +} |