1c621877c3
* Create zipada-58.0.0.toml Moving on to Zip-Ada version 58. * Update zipada-58.0.0.toml Adapted an example from Alire's doc to relate Alire's `os` to zipada.gpr's `Zip_OS`. * Update zipada-58.0.0.toml Put [gpr-set-externals...] after headerless part. * Update zipada-58.0.0.toml On zip-ada's side: fixed version string. * Update zipada-58.0.0.toml Adapted list of executables to those actually built by zipada.gpr.
31 lines
615 B
TOML
31 lines
615 B
TOML
name = "zipada"
|
|
version = "58.0.0"
|
|
authors = [ "Gautier de Montmollin", ]
|
|
description = "Manage Zip Archives and raw LZMA streams"
|
|
licenses = "MIT"
|
|
tags = [ "zip" ]
|
|
|
|
maintainers = [ "alejandro@mosteo.com" ]
|
|
maintainers-logins = [ "mosteo", "zertovitch" ]
|
|
|
|
project-files = [ "zipada.gpr" ]
|
|
|
|
executables = [
|
|
"comp_zip",
|
|
"find_zip",
|
|
"lzma_dec",
|
|
"lzma_enc",
|
|
"rezip",
|
|
"unzipada",
|
|
"zipada",
|
|
"zip_dir_list",
|
|
]
|
|
|
|
[origin]
|
|
commit = "2a0903e1ac2c75db4916b19439b364361d9b6cd0"
|
|
url = "git+https://github.com/zertovitch/zip-ada.git"
|
|
|
|
[gpr-set-externals.'case(os)']
|
|
macos = { Zip_OS = "MacOSX" }
|
|
windows = { Zip_OS = "Win64" }
|