-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare release and bump version numbers to 0.1.4
- Loading branch information
Showing
4 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package = "ZipWriter" | ||
version = "0.1.4-1" | ||
source = { | ||
url = "https://github.com/moteus/ZipWriter/archive/v0.1.4.zip", | ||
dir = "ZipWriter-0.1.4", | ||
} | ||
|
||
description = { | ||
summary = "Library for creating ZIP archive for Lua 5.1/5.2", | ||
homepage = "https://github.com/moteus/ZipWriter", | ||
detailed = [[This package provides a library to create zip archives. | ||
This library support non seekable streams (e.g. socket), ZIP64 format and AES encrypting. | ||
]], | ||
license = "MIT/X11", | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1", | ||
"lzlib", | ||
"struct >= 1.2", -- For Lua < 5.3 | ||
-- "bit32", -- Lua 5.1 only | ||
-- "aesfileencrypt", -- optional fast aes encryption | ||
-- "luacrypto >= 0.3.0", -- optional to support aes | ||
-- "lua-iconv >= 7.0", -- optional | ||
-- "alien >= 0.7.0", -- optional on windows | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
copy_directories = {"test"}, | ||
|
||
platforms = { | ||
windows = { | ||
modules = { | ||
["ZipWriter.win.cp"] = "lua/ZipWriter/win/cp.lua", | ||
} | ||
} | ||
}, | ||
|
||
modules = { | ||
["ZipWriter" ] = "lua/ZipWriter.lua", | ||
["ZipWriter.binary_converter"] = "lua/ZipWriter/binary_converter.lua", | ||
["ZipWriter.charset"] = "lua/ZipWriter/charset.lua", | ||
["ZipWriter.bit"] = "lua/ZipWriter/bit.lua", | ||
["ZipWriter.utils"] = "lua/ZipWriter/utils.lua", | ||
["ZipWriter.encrypt.aes"] = "lua/ZipWriter/encrypt/aes.lua", | ||
["ZipWriter.encrypt.aes.AesFileEncrypt"] = "lua/ZipWriter/encrypt/aes/AesFileEncrypt.lua", | ||
} | ||
} | ||
|
||
|
||
|