This repository contains .deb and .rpm repositories for various AI-related tools and applications on Linux. Packages are automatically built and published to Debian and RPM repositories hosted via GitHub Pages.
To use this repository on your Debian-based system (Ubuntu, Linux Mint, Debian, etc.), follow the steps below.
wget -qO - https://ai-linux.koca.dev/repo.key | gpg --dearmor | sudo tee /usr/share/keyrings/ai-linux.gpg > /dev/null
sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/ai-linux.gpg] https://ai-linux.koca.dev/deb stable main" > /etc/apt/sources.list.d/ai-linux.list'After adding the repository, update your package index and install the desired packages:
sudo apt update
sudo apt install <package-name>To use this repository on your RPM-based system (Fedora, CentOS, RHEL, etc.), follow the steps below.
sudo sh -c 'echo -e "[ai-linux]\nname=ai-linux repository\nbaseurl=https://ai-linux.koca.dev/rpm\nenabled=1\ngpgcheck=0\nrepo_gpgcheck=0" > /etc/yum.repos.d/ai-linux.repo'After adding the repository, you can install the desired packages:
sudo dnf install <package-name>To add a new package or update an existing one:
- Create or modify a
.kocafile in thekoca/directory. - Push your changes to the
mainbranch. - The GitHub Actions workflow will automatically build the package, create a GitHub Release, and update the Debian and RPM repositories.
The build scripts in this repository are released under the MIT License.