# Maintainer: Frederic Bezies # Contributor: Alad Wenter # Contributor: Sean Haugh # Contributor: Chris Salzberg _pkgname=neomutt pkgname=neomutt-git pkgver=20211029.r144.gb77af0218 pkgrel=1 pkgdesc='A version of mutt with added features - development branch' url='http://www.neomutt.org/' license=('GPL') source=('git+https://github.com/neomutt/neomutt.git#branch=master') sha256sums=('SKIP') arch=('i686' 'x86_64') depends=('lua' 'perl' 'notmuch-runtime' 'lmdb' 'kyotocabinet' 'python') makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m') conflicts=('neomutt') provides=('neomutt') pkgver() { cd "$_pkgname" git describe --long --tags | sed -r 's/(.*)-(.*)-/\1.r\2./; s/-//g' } build() { cd "$_pkgname" ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib \ --gpgme \ --enable-lua \ --notmuch \ --gss \ --ssl \ --sasl \ --with-ui=ncurses \ --with-idn2=/usr \ --idn=0 \ --idn2=1 \ --lmdb \ --kyotocabinet \ --gdbm make } package() { cd "$_pkgname" make DESTDIR="$pkgdir" install } # vim: ft=sh ts=4 sw=4 et