vp-build/srcpkgs/neomutt/template

80 lines
2.9 KiB
Bash

# Template file for 'neomutt'
pkgname=neomutt
version=20170306
revision=1
wrksrc="${pkgname}-${pkgname}-${version}"
build_style=gnu-configure
configure_args="--enable-pop --enable-imap --enable-smtp --enable-hcache --with-gdbm
--enable-gpgme --with-regex --with-idn --with-ssl --with-sasl --enable-notmuch
--enable-sidebar --enable-nfs-fix --sysconfdir=/etc/$pkgname"
hostmakedepends="automake"
makedepends="ncurses-devel gpgme-devel libidn-devel libressl-devel libsasl-devel
gdbm-devel aspell-devel libnotmuch-devel"
depends="mime-types"
conf_files="/etc/$pkgname/Muttrc"
short_desc="Mutt with misc fixes and feature patches"
maintainer="Toyam Cox <Vaelatern@gmail.com>"
license="GPL-2"
homepage="http://www.neomutt.org"
distfiles="https://github.com/neomutt/neomutt/archive/neomutt-${version}.tar.gz"
checksum=4fc1d02792ca8b6c74105c9376886b0c2fb7ef28bc04be7cfd0f0699aa5c8c63
case "${XBPS_TARGET_MACHINE}" in
x86_64-musl) CFLAGS="-D_FILE_OFFSET_BITS=64 -DLARGEFILE_SOURCE=1";;
# Inquiry: Do we have largefile support on everywhere?
esac
provides="mutt-0_1"
# Begin alternatives:
alternatives="
mutt:mutt:/usr/bin/mutt-$pkgname
mutt:pgpewrap:/usr/bin/pgpewrap-$pkgname
mutt:flea:/usr/bin/flea-$pkgname
mutt:muttbug:/usr/bin/muttbug-$pkgname
mutt:smime_keys:/usr/bin/smime_keys-$pkgname
mutt:pgpewrap.1:/usr/share/man/man1/pgpewrap-${pkgname}.1
mutt:flea.1:/usr/share/man/man1/flea-${pkgname}.1
mutt:mutt.1:/usr/share/man/man1/mutt-${pkgname}.1
mutt:pgpring.1:/usr/share/man/man1/pgpring-${pkgname}.1
mutt:muttbug.1:/usr/share/man/man1/muttbug-${pkgname}.1
mutt:smime_keys.1:/usr/share/man/man1/smime_keys-${pkgname}.1
mutt:mbox.5:/usr/share/man/man5/mbox-${pkgname}.5
mutt:muttrc.5:/usr/share/man/man5/muttrc-${pkgname}.5
mutt:mmdf.5:/usr/share/man/man5/mmdf-${pkgname}.5
"
# End alternatives
pre_configure() {
autoreconf -fi
}
post_install() {
# provided by mime-types
rm "${DESTDIR}"/etc/${pkgname}/mime.*
ln -s /etc/mime.types "${DESTDIR}/etc/${pkgname}/mime.types"
# move dist to examples dir
vsconf contrib/gpg.rc Muttrc.gpg.dist
mv "${DESTDIR}/etc/$pkgname/Muttrc.dist" "${DESTDIR}/usr/share/examples/${pkgname}"
# Allows alternatives to work
for manpage in "${DESTDIR}"/usr/share/man/man[15]/*; do
mv "$manpage" "${manpage%.*}-${pkgname}.${manpage##*.}"
done
for binary in "${DESTDIR}"/usr/bin/*; do
mv "$binary" "${binary}-${pkgname}"
done
}
# REMARKS:
# Conf file is in a --sysconfdir=/etc/$pkgname/Muttrc and then alternatives to
# /etc/Muttrc. In addition, a dependency on mime-types is broken by having
# /etc/dir/ because mutt probably expects the mime information in the same
# dir as sysconfdir. Thus a symlink is created to deal with this.
# /etc/Muttrc is not currently in alternatives to prevent inadvertently
# overwriting configuration.
# In version 20160808 keybase integration was added, and lots of new
# documentation now gets installed. Rumors of an /etc/NeoMuttrc are in the
# release notes but not currently installed for unknown reasons.