Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# Maintainer: Yao Zi <ziyao@disroot.org>

pkgname=mutt
pkgver=2.3.3
pkgver=2.4.1
pkgrel=1
pkgdesc='The Mutt E-mail Client.'
url='http://www.mutt.org/'
arch=(x86_64 aarch64 riscv64 loongarch64)
license=(GPL-2.0-or-later)
depends=(ncurses sqlite zlib-ng openssl libsasl gdbm libidn2 gpgme
libgpg-error)
checkdepends_x86_64=(shellcheck)
checkdepends_riscv64=(shellcheck)
source=("http://ftp.mutt.org/pub/mutt/mutt-$pkgver.tar.gz")
sha256sums=('bce753399b28c0efcfa8a446115f0d30d9c27e551ab51b0e53799dd0c373dcc4')
sha256sums=('5624321f0b1cc1eff6cab9ef08f25954ff64c51b33d4bf3b99484cf1edd8cfff')

build () {
cd mutt-$pkgver
Expand Down Expand Up @@ -67,7 +69,14 @@ build () {

check() {
cd mutt-$pkgver
make check
case $CARCH in
x86_64 | riscv64)
make check
;;
*)
make check-security tabcheck
;;
esac
}

package() {
Expand Down