mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
fix(aur): make data archive extraction more robust
This commit is contained in:
parent
c28cd78712
commit
36a5762c7c
2 changed files with 4 additions and 3 deletions
2
.SRCINFO
2
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
|||
pkgbase = vanta-bin
|
||||
pkgdesc = A hyper-fast, scriptable command palette for Wayland
|
||||
pkgver = 1.1.0
|
||||
pkgrel = 1
|
||||
pkgrel = 2
|
||||
url = https://github.com/Misiix9/vanta
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
|
|
|
|||
5
PKGBUILD
5
PKGBUILD
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Misiix9 <admin@misiix.dev>
|
||||
pkgname=vanta-bin
|
||||
pkgver=1.1.0
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="A hyper-fast, scriptable command palette for Wayland"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/Misiix9/vanta"
|
||||
|
|
@ -13,5 +13,6 @@ source=("vanta_${pkgver}_amd64.deb::https://github.com/Misiix9/vanta/releases/do
|
|||
sha256sums=('SKIP')
|
||||
|
||||
package() {
|
||||
tar -xf data.tar.zst -C "${pkgdir}"
|
||||
# Extract whichever data archive exists (gzip, xz, or zstd)
|
||||
find "${srcdir}" -maxdepth 1 -name "data.tar.*" -exec tar -xf {} -C "${pkgdir}" \;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue