summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasilii Novikov2022-04-13 21:47:09 +0200
committerVasilii Novikov2022-04-13 21:47:09 +0200
commitb785f9d389b4a12604d482e7620293f6b374af92 (patch)
tree24e9a10d66b884e961f7c8e51b9540ade757e230
parente755894f1a0805932f126b7a2106c0464a6197f0 (diff)
downloadaur-b785f9d389b4a12604d482e7620293f6b374af92.tar.gz
Fix architectures list
Rua supports "any" architecture, but in compiled form it is architecture-specific, so PKGBUILD contract requires you to specify all the architectures individually.
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD4
2 files changed, 9 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index edc0d41cb7c2..672f41707727 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,14 @@
pkgbase = rua
pkgdesc = AUR helper in Rust providing control, review, patch application and safe build options
pkgver = 0.19.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/vn971/rua
- arch = any
+ arch = x86_64
+ arch = i686
+ arch = arm
+ arch = armv6h
+ arch = armv7h
+ arch = aarch64
license = GPL3
makedepends = cargo
makedepends = libseccomp
diff --git a/PKGBUILD b/PKGBUILD
index 6c73c4b8786f..dc40d9ac7223 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,11 +1,11 @@
# Maintainer: Vasia Novikov <n1dr+cmarchlinux@yaaandex.com> (replace "aaa" with "a")
pkgname=rua
pkgver=0.19.0
-pkgrel=2
+pkgrel=3
pkgdesc='AUR helper in Rust providing control, review, patch application and safe build options'
url='https://github.com/vn971/rua'
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vn971/rua/archive/v${pkgver}.tar.gz")
-arch=('any')
+arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64')
license=('GPL3')
makedepends=('cargo' 'libseccomp')