diff options
author | Stefanie Eckner <stefanie@eckner.net> | 2024-12-30 15:42:00 +0100 |
---|---|---|
committer | Stefanie Eckner <stefanie@eckner.net> | 2024-12-30 15:42:00 +0100 |
commit | fc4847077d4c3b0d8582e1b5691c03e889222c01 (patch) | |
tree | 39fa2b6d2a976304213ac4e53ab8e079b24e755d /abiword-gtk2 | |
parent | 55d15a57cd266a0e12d0830d666ed112f0a8883b (diff) | |
download | archlinuxewe-fc4847077d4c3b0d8582e1b5691c03e889222c01.tar.xz |
abiword-gtk2: fix _pinned_dependencies for arch32
Diffstat (limited to 'abiword-gtk2')
-rw-r--r-- | abiword-gtk2/PKGBUILD | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/abiword-gtk2/PKGBUILD b/abiword-gtk2/PKGBUILD index cb997ccf4..ae4026174 100644 --- a/abiword-gtk2/PKGBUILD +++ b/abiword-gtk2/PKGBUILD @@ -5,12 +5,20 @@ pkgname=abiword-gtk2 _pkgname=abiword pkgver=3.0.5 -pkgrel=65 +pkgrel=66 pkgdesc='Fully-featured word processor, GTk2, No plugins, Lite version' arch=('i686' 'pentium4' 'x86_64') license=('GPL') -_pinned_dependencies=( +_pinned_dependencies_x86_64=( 'gcc-libs=14.2.1+r134+gab884fffe3fc' +) +_pinned_dependencies_pentium4=( + 'gcc-libs=14.1.1+r1+g43b730b9134' +) +_pinned_dependencies_i686=( + 'gcc-libs=14.1.1+r1+g43b730b9134' +) +_pinned_dependencies=( 'glibc>=2.31' 'libatk-1.0.so=0' 'libcairo.so=2' @@ -38,6 +46,9 @@ _pinned_dependencies=( 'libz.so=1' ) depends=('wv' 'enchant' 'desktop-file-utils' "${_pinned_dependencies[@]}") +depends_x86_64("${_pinned_dependencies_x86_64[@]}") +depends_pentium4("${_pinned_dependencies_pentium4[@]}") +depends_i686("${_pinned_dependencies_i686[@]}") makedepends=('pkgconfig' 'boost' 'autoconf-archive') conflicts=('abiword' 'abiword-plugins') url='http://www.abisource.com' |