mirror of
https://github.com/archlinux/aur.git
synced 2026-02-08 05:02:00 +01:00
Initial commit: xcrush-bin AUR package
This commit is contained in:
commit
03c1227ea9
2 changed files with 33 additions and 0 deletions
12
.SRCINFO
Normal file
12
.SRCINFO
Normal 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
21
PKGBUILD
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue