contrib/neomutt/Pkgfile

33 lines
672 B
Plaintext
Raw Normal View History

# Description: a fork of Mutt with added features
# URL: https://neomutt.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: cyrus-sasl keyutils krb5 lua notmuch
name=neomutt
2020-08-21 16:34:58 +02:00
version=20200821
2020-08-11 12:13:48 +02:00
release=1
source=(https://github.com/neomutt/neomutt/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
--gpgme \
--enable-lua \
--gss \
--ssl \
--sasl \
--notmuch \
--with-ui=ncurses \
--with-idn2=/usr \
--idn=0 \
--idn2=1 \
--gdbm \
--doc=0
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/share/
}