https://github.com/markupstart/voidrepo
https://github.com/markupstart/voidrepo
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/markupstart/voidrepo
- Owner: markupstart
- Created: 2026-06-12T17:36:06.000Z (16 days ago)
- Default Branch: main
- Last Pushed: 2026-06-12T19:09:45.000Z (16 days ago)
- Last Synced: 2026-06-12T19:20:58.623Z (16 days ago)
- Language: Shell
- Size: 40 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Void Linux Custom Packages Repository
A personal repository for custom Void Linux package templates with automated builds via GitHub Actions.
Packages included are:
- hip-runtime-amd
- hipcc
- rocm-cmake
- rocm-comgr
- rocm-device-libs
- rocm-opencl
- rocminfo
- rocr-runtime
- vscode-bin
- zen-browser
## 📦 What's This?
This repository hosts custom package templates for Void Linux, including ROCm packages and other custom builds. Packages are automatically built via GitHub Actions and published as releases, making it easy to install on multiple machines.
## 🚀 Quick Start
### On a New Machine
1. **Add this repository as a package source:**
```bash
sudo nano /etc/xbps.d/voidrepo.conf
```
Add this line to the file and save:
```
repository=https://github.com/markupstart/voidrepo/releases/download/latest
```
Then sync the repository index:
```bash
sudo xbps-install -S
```
2. **Trust the repository signing key:**
```bash
sudo mkdir -p /var/db/xbps/keys
sudo wget -O /var/db/xbps/keys/voidrepo.plist \
https://raw.githubusercontent.com/markupstart/voidrepo/main/keys/voidrepo-signing.pub
```
3. **Install packages:**
```bash
sudo xbps-install -S your-package-name
```