https://github.com/dilipkrish/wince-sfx
Project to produce a WinCE self extracting zip file. A Replacement for CAB file creation
https://github.com/dilipkrish/wince-sfx
cab cab-replacement embedded self-extracting-zip windows windows-ce zip
Last synced: about 1 month ago
JSON representation
Project to produce a WinCE self extracting zip file. A Replacement for CAB file creation
- Host: GitHub
- URL: https://github.com/dilipkrish/wince-sfx
- Owner: dilipkrish
- License: apache-2.0
- Created: 2017-06-29T23:59:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T16:58:07.000Z (about 7 years ago)
- Last Synced: 2024-10-05T21:41:40.486Z (over 1 year ago)
- Topics: cab, cab-replacement, embedded, self-extracting-zip, windows, windows-ce, zip
- Language: Java
- Size: 157 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
All sources are embedded in the Sfx-1.0.0-all.jar in case we need to modify the source. For all practical purposes
we treat this as a downloaded utility.
To build
Linux/Windows
```bash
./gradlew clean build
```
Windows
```dos
gradlew.bat clean build
```
Building produces an install directory `./build/install/Sfx-shadow` and the bin folder contains the executable.
Running the following command without any arguments will list the command help.
Linux/Mac
```bash
./build/install/Sfx-shadow/bin/Sfx
```
Windows
```dos
.\build\installSfx-shadow\bin\Sfx
```
The options are as shown below.
```asciii
Option (* = required) Description
--------------------- -----------
--an, --artifactName [String] Name of the artifact to create (without the
extension). Defaults to name of the name of
the leaf input directory
* -d, --directory Directory to add to the zip archive
--wd, --workingDirectory [File] Working directory. Zip file entries are
created relative to this. Defaults to
directory to be archived
```
For e.g.
Running the following
Linux/Mac
```bash
./build/install/Sfx-shadow/bin/Sfx -an test -d /src
```
Windows
```dos
.\build\installSfx-shadow\bin\Sfx -an test -d \src
```
will produce a self extracting `test.exe` (compatible with the Windows CE 6/7 platform).