### Bootstrap Docker Images for Liquorix Package Builds Source: https://github.com/damentz/liquorix-package/blob/6.14/master/README.md This command executes the `docker_bootstrap.sh` script to prepare and update the necessary Docker images for building Liquorix packages. Running it initially performs a full build, while subsequent executions update existing images. ```shell ./scripts/debian/docker_bootstrap.sh ``` -------------------------------- ### Build Liquorix Binary Packages for AMD64 Source: https://github.com/damentz/liquorix-package/blob/6.14/master/README.md This command builds the final Liquorix binary packages for a specified architecture, distribution, and release using `docker_build-binary.sh`. Currently, only AMD64 architecture is supported. Successful builds are placed in the `artifacts` directory. ```shell ./scripts/debian/docker_build-binary.sh amd64 debian bookworm ``` -------------------------------- ### Build Liquorix Source Packages for Debian/Ubuntu Source: https://github.com/damentz/liquorix-package/blob/6.14/master/README.md This command initiates the build process for Liquorix source packages using `docker_build-source.sh`. It requires two arguments: the target distribution (e.g., 'debian') and its specific release (e.g., 'bookworm'). ```shell ./scripts/debian/docker_build-source.sh debian bookworm ``` -------------------------------- ### Find dpkg-buildpackage Instances in Scripts Source: https://github.com/damentz/liquorix-package/blob/6.14/master/README.md This command searches for all occurrences of 'dpkg-buildpackage' within the project's `scripts/` directory. It is useful for identifying locations where the `--no-sign` flag can be added to disable package signing if desired. ```shell find scripts/ -type f | xargs grep -H 'dpkg-buildpackage' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.