diff options
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') |