commit 9c846cc64276fa58cbfe0821177533e2546884bd Author: Tim Biermann <tbier@posteo.de> Date: Sat Nov 2 23:09:00 2019 +0100 neomutt: initial commit, version 20191102 diff --git a/neomutt/.footprint b/neomutt/.footprint new file mode 100644 index 000000000..498258b82 --- /dev/null +++ b/neomutt/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root etc/ +-rw-r--r-- root/root etc/neomuttrc +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/neomutt +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/neomutt/ +-rwxr-xr-x root/root usr/lib/neomutt/pgpewrap +-rwxr-xr-x root/root usr/lib/neomutt/smime_keys diff --git a/neomutt/.signature b/neomutt/.signature new file mode 100644 index 000000000..024177092 --- /dev/null +++ b/neomutt/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF36RgPogiXbdg9uSFYMPdwr3+FZKUOQJuhkR4I1LVLScuS7F4HGRco7Z9b93kSlt+D85pKhxsgRT3E2y2h6yiVAY= +SHA256 (Pkgfile) = 8891f2cc48b3ba8704b49c22cd55f241f8368199e877cf1aae922c1dd3426e66 +SHA256 (.footprint) = 4b8b646e2de76fe03176e42efe0c768c5134d4c6ba4086f0c6c864ae2db092b7 +SHA256 (neomutt-20191102.tar.gz) = 2feffde535323a5c96b8b2c895af2a32c46d25dc9d2e45ffc2d9ffaa06f73468 diff --git a/neomutt/Pkgfile b/neomutt/Pkgfile new file mode 100644 index 000000000..eae1cbfa9 --- /dev/null +++ b/neomutt/Pkgfile @@ -0,0 +1,32 @@ +# Description: a fork of Mutt with added features +# URL: https://neomutt.org/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: + +name=neomutt +version=20191102 +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/ +}