Build Package with Qi.
build-package-with-qi Build Package with Qi. Back in August 2024, I discovered a linux distro called Dragora GNU/Linux. Dragora has a unique package manager called qi . For package instalation, Qi feel like installpkg from Slackaware. For building package, qi takes some similiar approaches from PKGBUILD (Archlinux) and APKBUILD (Alpine linux). Qi uses a recipe as alternative of PKGBUILD, APKBUILD or slackbuild file to build package. Qi seems universal to use across distros, I’ve been actively using it on Ubuntu, Dragora, and LFS. Qi Recipe. Qi recipe consist of 2 parts : Package information , such as package name, description, url and package source url, etc. Build instructions , how the package will be built (extract source code, patching if needed, and install to destination directory). This is a simple qi recipe template. set -e program= version= release= description="" homepage="" license="" tarname= fetch="" ...