diff options
Diffstat (limited to 'courier-authlib-devel/PKGBUILD')
-rw-r--r-- | courier-authlib-devel/PKGBUILD | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/courier-authlib-devel/PKGBUILD b/courier-authlib-devel/PKGBUILD index 65b73cffa..9ed1a9c72 100644 --- a/courier-authlib-devel/PKGBUILD +++ b/courier-authlib-devel/PKGBUILD @@ -9,19 +9,29 @@ pkgname=courier-authlib-devel _pkgname=${pkgname%-*} pkgver=0.72.0.20231229 -pkgrel=10 +pkgrel=11 pkgdesc="Authentication library for the Courier mailserver(s)" arch=(i686 pentium4 x86_64) license=('GPL2') url="https://courier-mta.org/authlib/" backup=('etc/authlib/authdaemonrc' 'etc/authlib/authldaprc' \ 'etc/authlib/authmysqlrc' 'etc/authlib/authpgsqlrc') -_pinned_dependencies=( +_pinned_dependencies_i686=( + 'gcc-libs=14.1.1+r1+g43b730b9134' + 'libldap=2.6.6' +) +_pinned_dependencies_pentium4=( + 'gcc-libs=14.1.1+r1+g43b730b9134' + 'libldap=2.6.6' +) +_pinned_dependencies_x86_64=( 'gcc-libs=14.2.1+r134+gab884fffe3fc' + 'libldap=2.6.9' +) +_pinned_dependencies=( 'glibc>=2.31' 'libcrypt.so=2' 'libgdbm.so=6' - 'libldap=2.6.9' 'libmariadb.so=3' 'libpam.so=0' 'libpq.so=5' @@ -29,6 +39,9 @@ _pinned_dependencies=( 'libtool=2.5.4+r1+gbaa1fe41' ) depends=('openssl' 'perl' 'expect' 'courier-unicode>=2.1' "${_pinned_dependencies[@]}") +depends_i686=("${_pinned_dependencies_i686[@]}") +depends_pentium4=("${_pinned_dependencies_pentium4[@]}") +depends_x86_64=("${_pinned_dependencies_x86_64[@]}") makedepends=('libldap') optdepends=('sqlite: With support for the authsqlite authentication module' 'libmariadbclient: With support for the authmysql authentication module' |