Initial commit: xcrush-bin AUR package

This commit is contained in:
Aleks Clark 2026-01-30 21:21:00 -06:00
commit 03c1227ea9
No known key found for this signature in database
GPG key ID: 6C536635886544B1
2 changed files with 33 additions and 0 deletions

12
.SRCINFO Normal file
View file

@ -0,0 +1,12 @@
pkgbase = xcrush-bin
pkgdesc = ⚠️ UNOFFICIAL TOOL - Build tool for creating custom Crush distributions (NOT an official Charm Labs tool)
pkgver = 2026.01.30.1
pkgrel = 1
url = https://github.com/aleksclark/crush-modules
arch = x86_64
license = MIT
provides = xcrush
source = xcrush-bin-2026.01.30.1.tar.gz::https://github.com/aleksclark/crush-modules/releases/download/2026.01.30.1/xcrush_2026.01.30.1_linux_x86_64.tar.gz
sha256sums = SKIP
pkgname = xcrush-bin

21
PKGBUILD Normal file
View file

@ -0,0 +1,21 @@
# Maintainer: Aleksander Clark <alex at alexclark dot sh>
pkgname=xcrush-bin
pkgver=2026.01.30.1
pkgrel=1
pkgdesc="⚠️ UNOFFICIAL TOOL - Build tool for creating custom Crush distributions (NOT an official Charm Labs tool)"
arch=('x86_64')
url="https://github.com/aleksclark/crush-modules"
license=('MIT')
provides=('xcrush')
source=("${pkgname}-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/xcrush_${pkgver}_linux_x86_64.tar.gz")
sha256sums=('SKIP')
package() {
cd "$srcdir"
# Install binary
install -Dm755 "xcrush" "${pkgdir}/usr/bin/xcrush"
# Install license
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}