diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-08-05 14:51:59 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-08-05 14:51:59 +0200 |
commit | d05dc55737eb035fdbd980b1837c83a77575fc5d (patch) | |
tree | e56c1c81b7c74f5d6d3ca0dacd8da8386d57d608 /fetchmail | |
parent | 0c92be4545cbf96b3a5cf034e11efe9d10db454c (diff) | |
download | archlinuxewe-d05dc55737eb035fdbd980b1837c83a77575fc5d.tar.xz |
fetchmail: rebuild
Diffstat (limited to 'fetchmail')
-rw-r--r-- | fetchmail/PKGBUILD | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/fetchmail/PKGBUILD b/fetchmail/PKGBUILD index c34d5e52b..d6f1a88b3 100644 --- a/fetchmail/PKGBUILD +++ b/fetchmail/PKGBUILD @@ -2,15 +2,24 @@ pkgname=fetchmail pkgver=6.4.39 -pkgrel=1 +pkgrel=2 pkgdesc="A remote-mail retrieval utility" arch=('i486' 'i686' 'pentium4' 'x86_64') url="http://www.fetchmail.info" license=('GPL') _pinned_dependencies=( 'glibc>=2.31' - 'openssl=3.3.1' ) +if [ "${OS}" = 'arch' ]; then + _pinned_dependencies+=( + 'openssl=3.3.1' + ) +else + _pinned_dependencies+=( + 'libcrypto.so=3' + 'libssl.so=3' + ) +fi depends=("${_pinned_dependencies[@]}") makedepends=('python') optdepends=('tk: for using fetchmailconf') |