mirror of
https://github.com/archlinux/aur.git
synced 2026-02-08 05:02:00 +01:00
chore: update to 2026.01.31.8
This commit is contained in:
parent
03c1227ea9
commit
e2eba4dc4b
2 changed files with 31 additions and 21 deletions
16
.SRCINFO
16
.SRCINFO
|
|
@ -1,12 +1,16 @@
|
|||
pkgbase = xcrush-bin
|
||||
pkgdesc = ⚠️ UNOFFICIAL TOOL - Build tool for creating custom Crush distributions (NOT an official Charm Labs tool)
|
||||
pkgver = 2026.01.30.1
|
||||
pkgdesc = Unofficial build tool for creating custom Crush distributions with plugins
|
||||
pkgver = 2026.01.31.8
|
||||
pkgrel = 1
|
||||
url = https://github.com/aleksclark/crush-modules
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
conflicts = crush-modules
|
||||
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
|
||||
|
||||
arch = aarch64
|
||||
source_aarch64 = https://github.com/aleksclark/crush-modules/releases/download/${pkgver}/xcrush_${pkgver}_linux_arm64.tar.gz
|
||||
sha256sums_aarch64 = 8dd533c67353fe8b2ced7d2505721e0a63b56d3e2e8b8878e1ae7a59d277dc49
|
||||
arch = x86_64
|
||||
source_x86_64 = https://github.com/aleksclark/crush-modules/releases/download/${pkgver}/xcrush_${pkgver}_linux_x86_64.tar.gz
|
||||
sha256sums_x86_64 = 62da637b2af4d635153e1e3d33b83f268dd0b936d4c7f9ecda6c12901ff42744
|
||||
|
||||
pkgname = xcrush-bin
|
||||
|
|
|
|||
36
PKGBUILD
36
PKGBUILD
|
|
@ -1,21 +1,27 @@
|
|||
# Maintainer: Aleksander Clark <alex at alexclark dot sh>
|
||||
pkgname=xcrush-bin
|
||||
pkgver=2026.01.30.1
|
||||
# This file was generated by GoReleaser. DO NOT EDIT.
|
||||
# Maintainer: Aleks Clark <aleks dot clark at gmail dot com>
|
||||
# Contributor: Aleks Clark <aleks dot clark at gmail dot com>
|
||||
|
||||
pkgname='xcrush-bin'
|
||||
pkgver=2026.01.31.8
|
||||
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"
|
||||
pkgdesc='Unofficial build tool for creating custom Crush distributions with plugins'
|
||||
url='https://github.com/aleksclark/crush-modules'
|
||||
arch=('aarch64' 'x86_64')
|
||||
license=('MIT')
|
||||
provides=('xcrush')
|
||||
source=("${pkgname}-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/xcrush_${pkgver}_linux_x86_64.tar.gz")
|
||||
sha256sums=('SKIP')
|
||||
conflicts=('crush-modules')
|
||||
|
||||
source_aarch64=("${pkgname}_${pkgver}_aarch64.tar.gz::https://github.com/aleksclark/crush-modules/releases/download/${pkgver}/xcrush_${pkgver}_linux_arm64.tar.gz")
|
||||
sha256sums_aarch64=('8dd533c67353fe8b2ced7d2505721e0a63b56d3e2e8b8878e1ae7a59d277dc49')
|
||||
|
||||
source_x86_64=("${pkgname}_${pkgver}_x86_64.tar.gz::https://github.com/aleksclark/crush-modules/releases/download/${pkgver}/xcrush_${pkgver}_linux_x86_64.tar.gz")
|
||||
sha256sums_x86_64=('62da637b2af4d635153e1e3d33b83f268dd0b936d4c7f9ecda6c12901ff42744')
|
||||
|
||||
package() {
|
||||
cd "$srcdir"
|
||||
|
||||
# Install binary
|
||||
install -Dm755 "xcrush" "${pkgdir}/usr/bin/xcrush"
|
||||
|
||||
# Install license
|
||||
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
# bin
|
||||
install -Dm755 "./xcrush" "${pkgdir}/usr/bin/xcrush"
|
||||
|
||||
# license
|
||||
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/xcrush/LICENSE"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue