-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the ability to build any type of package, including meta packages
Example for meta package: ``` build_native_package \ --architectures noarch \ --target-dir "$ROOT_REPOS" \ --base-name "app-meta" \ --version "1.2.3" \ --release "1" \ --depends "mc" \ --depends "unrar" \ --description "Meta package to instal mc and unrar" \ --summary "Meta package" ``` Example to build any other package (can be built with C files automatically compiled to `/usr/bin` as well) with files prepared in `myapp-dir`: ``` build_native_package \ --architectures arm64 \ --files myapp-file.c myapp-dir \ --target-dir "$ROOT_REPOS" \ --base-name "app-name" \ --version "1.2.3" \ --release "1" \ --permissions 6755 \ --section system \ --description "App description" \ --summary "App summary" ```
- Loading branch information
Showing
1 changed file
with
75 additions
and
15 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