-
Was having a read the other day, but I cant seem to find the right keywords or instructions. I want to create a manifest that allowed an installation of a software production, but the installer is split across multiple files (e.g. install.zip; install.zip.1; install.zip.2). How do I create a manifest to do an install with that? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
This currently isn’t possible. The closest you could get would be to add it as three separate packages and have Install-2 depend on Install-1 which itself depends on Install-0, but that would only work if each installer had a binary that can run independently (in sequence), since someone could soecify to only install Install-1 in that case. This means that the packages probably wouldn’t pass validation |
Beta Was this translation helpful? Give feedback.
-
This reminds of the WInZip multi-part compressed file format, designed for storage and transfer over newsgroups and email with low file size limits. Some archives were split across dozens of |
Beta Was this translation helpful? Give feedback.
-
Yeah, basically. Except the first file is the exe for self-extraction
Regards,
Nathaniel Mitchell
…On Fri, 6 Sept 2024 at 02:47, Stephen Gillie ***@***.***> wrote:
This reminds of the WInZip multi-part compressed file format, designed for
storage and transfer over newsgroups and email with low file size limits.
Some archives were split across dozens of .z0n files. But agreed, the
package manager doesn't support this archive file format.
—
Reply to this email directly, view it on GitHub
<#167945 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHC5FYRFZOEYMNWW7EIIBQLZVCDJLAVCNFSM6AAAAABMTKPU32VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTANJWGAYTQNY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
This currently isn’t possible.
The closest you could get would be to add it as three separate packages and have Install-2 depend on Install-1 which itself depends on Install-0, but that would only work if each installer had a binary that can run independently (in sequence), since someone could soecify to only install Install-1 in that case. This means that the packages probably wouldn’t pass validation