summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorShapeShifter4992021-04-22 19:16:26 -0700
committerShapeShifter4992021-04-22 19:16:26 -0700
commit66861ad9e3f0e1a453273184fbfacd9afb4a4d32 (patch)
tree2997b9c30ddf65492916ded7c0ada2cab036b012
parente0a35542850f78d211c3611c97c2d45e59a3406d (diff)
downloadaur-66861ad9e3f0e1a453273184fbfacd9afb4a4d32.tar.gz
Change PKGBUILD to correctly list all supported architectures
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD2
2 files changed, 8 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f6f1f16eac07..44ed69a27b41 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,7 +3,13 @@ pkgbase = db4.8
pkgver = 4.8.30
pkgrel = 7
url = http://www.oracle.com/technology/software/products/berkeley-db/index.html
- arch = any
+ arch = x86_64
+ arch = i686
+ arch = pentium4
+ arch = arm
+ arch = armv6h
+ arch = armv7h
+ arch = aarch64
license = custom
depends = gcc-libs
options = !libtool
diff --git a/PKGBUILD b/PKGBUILD
index fa9160377385..72fe2bb67b2b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@ pkgname=db4.8
pkgver=4.8.30
pkgrel=7
pkgdesc="The Berkeley DB embedded database system 4.8"
-arch=('any')
+arch=('x86_64' 'i686' 'pentium4' 'arm' 'armv6h' 'armv7h' 'aarch64')
license=('custom')
url="http://www.oracle.com/technology/software/products/berkeley-db/index.html"
depends=('gcc-libs')