diff options
-rw-r--r-- | alpine/PKGBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/alpine/PKGBUILD b/alpine/PKGBUILD index 6bfc658bb..1fe932070 100644 --- a/alpine/PKGBUILD +++ b/alpine/PKGBUILD @@ -4,12 +4,19 @@ pkgname=alpine pkgver=2.22.r37.6c702a2 _commit=${pkgver##*.} -pkgrel=2 +pkgrel=3 arch=("i686" "pentium4" "x86_64") pkgdesc="Apache licensed PINE mail user agent" url="http://alpine.freeiz.com" license=("APACHE") -depends=("libldap" "krb5" "gettext") +_pinned_dependencies=( + 'glibc>=2.31' + 'krb5=1.18.1' + 'libldap=2.4.49' + 'ncurses=6.2' + 'openssl=1.1.1.g' +) +depends=("gettext" "${_pinned_dependencies[@]}") makedepends=('openssl' 'git') optdepends=("aspell: for spell-checking support" "hunspell: for spell-checking support" |