1
0
forked from ports/contrib

neomutt: initial commit, version 20191102

This commit is contained in:
Tim Biermann 2019-11-02 23:09:00 +01:00
parent 61c34b23ce
commit 9c846cc642
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 46 additions and 0 deletions

9
neomutt/.footprint Normal file
View File

@ -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

5
neomutt/.signature Normal file
View File

@ -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

32
neomutt/Pkgfile Normal file
View File

@ -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/
}