Move zip and unzip to keybase mirror (fixes #2126)

This commit is contained in:
Richard Kuhnt 2018-03-15 21:13:47 +01:00
parent 0fb261c2cd
commit e131091bbb
2 changed files with 25 additions and 21 deletions

View File

@ -1,4 +1,8 @@
{ {
"homepage": "http://www.info-zip.org/",
"license": "http://www.info-zip.org/pub/infozip/license.html",
"description": "Unzip compression utility",
"version": "6.00",
"bin": [ "bin": [
"SFXWiz32.exe", "SFXWiz32.exe",
"unzipsfx.exe", "unzipsfx.exe",
@ -10,11 +14,6 @@
"-Z" "-Z"
] ]
], ],
"description": "Unzip compression utility",
"hash": "7869ee36346b47701ef01efd0bc2889f970266b66c80b30f74303d50bf7fa33d", "hash": "7869ee36346b47701ef01efd0bc2889f970266b66c80b30f74303d50bf7fa33d",
"homepage": "http://www.info-zip.org/", "url": "https://r15ch13.keybase.pub/scoop/unzip/unz600xn.exe#/dl.7z"
"license": "http://www.info-zip.org/pub/infozip/license.html",
"pre_install": "& \"$dir\\unz600xn.exe\" -d \"$dir\" -o",
"url": "ftp://ftp.info-zip.org/pub/infozip/win32/unz600xn.exe",
"version": "6.00"
} }

View File

@ -1,23 +1,28 @@
{ {
"architecture": { "homepage": "http://www.info-zip.org/",
"32bit": { "license": "http://www.info-zip.org/pub/infozip/license.html",
"hash": "f8bbc1821d50400245107ce8cfa4a6c7b524387b58bbd6cbe9c20094e82c3bb5", "description": "Zip compression utilities",
"url": "ftp://ftp.info-zip.org/pub/infozip/win32/zip300xn.zip" "version": "3.0",
},
"64bit": {
"hash": "ed29893fcd7f8b2afb2ead0461663584b740b5d064d4e1c87084107941197a7b",
"url": "ftp://ftp.info-zip.org/pub/infozip/win32/zip300xn-x64.zip"
}
},
"bin": [ "bin": [
"zip.exe", "zip.exe",
"zipcloak.exe", "zipcloak.exe",
"zipnote.exe", "zipnote.exe",
"zipsplit.exe" "zipsplit.exe"
], ],
"description": "Zip compression utilities", "architecture": {
"homepage": "http://www.info-zip.org/", "32bit": {
"license": "http://www.info-zip.org/pub/infozip/license.html", "hash": "f8bbc1821d50400245107ce8cfa4a6c7b524387b58bbd6cbe9c20094e82c3bb5",
"pre_install": "Add-Type -assembly 'system.io.compression.filesystem'; [io.compression.zipfile]::ExtractToDirectory(\"$dir\\$fname\", \"$dir\")", "url": "https://r15ch13.keybase.pub/scoop/zip/zip300xn.zip"
"version": "3.0" },
"64bit": {
"hash": "ed29893fcd7f8b2afb2ead0461663584b740b5d064d4e1c87084107941197a7b",
"url": "https://r15ch13.keybase.pub/scoop/zip/zip300xn-x64.zip"
}
},
"pre_install": [
"if(Test-Path \"$dir\\zip300xn-x64.zip\") {",
"unzip \"$dir\\zip300xn-x64.zip\" \"$dir\"",
"Remove-Item \"$dir\\zip300xn-x64.zip\"",
"}"
]
} }