void-packages/srcpkgs/notmuch/template
Alessio Sergi 2a712570b0 notmuch: update to 0.20.2
- cross build support
- simplified packaging
- notmuch-deliver doesn't exist anymore
2015-08-17 02:37:54 +02:00

71 lines
1.9 KiB
Bash

# Template file for 'notmuch'
pkgname=notmuch
version=0.20.2
revision=1
hostmakedepends="pkg-config perl python-Sphinx"
makedepends="xapian-core-devel gmime-devel talloc-devel bash-completion"
short_desc="The mail indexer"
maintainer="Jan S. <jan.schreib@gmail.com>"
license="GPL-3"
homepage="http://notmuchmail.org"
distfiles="http://notmuchmail.org/releases/notmuch-${version}.tar.gz"
checksum=f741a26345bff389fd8a4a119c4174c6585730f71844809583a54ef2a865adec
subpackages="libnotmuch libnotmuch-devel notmuch-mutt"
case "$XBPS_TARGET_MACHINE" in
i686|x86_64)
makedepends+=" emacs"
subpackages+=" notmuch-emacs"
_args="--emacslispdir=/usr/share/emacs/site-lisp/notmuch
--emacsetcdir=/usr/share/emacs/site-lisp/notmuch"
;;
*) _args="--without-emacs";;
esac
do_configure() {
# fool the endianess test
sed -i 's|\(util_byte_order\)=.*|\1=1234|' configure
./configure --prefix=/usr \
--bashcompletiondir=/usr/share/bash-completion/completions \
--zshcompletiondir=/usr/share/zsh/site-functions ${_args}
}
do_build() {
make ${makejobs} V=1
make -C contrib/notmuch-mutt
}
do_install() {
make DESTDIR=${DESTDIR} install
}
libnotmuch_package() {
short_desc+=" - runtime library"
pkg_install() {
vmove usr/lib/*.so.*
}
}
libnotmuch-devel_package() {
short_desc+=" - development files"
depends="libnotmuch-${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
}
}
notmuch-emacs_package() {
noarch=yes
short_desc+=" - Emacs interface"
depends="${sourcepkg}-${version}_${revision} virtual?emacs"
pkg_install() {
vmove usr/share/emacs/site-lisp
}
}
notmuch-mutt_package() {
noarch=yes
short_desc+=" - Mutt interface"
depends="${sourcepkg}-${version}_${revision} perl-Mail-Box perl-MailTools
perl-String-ShellQuote perl-Term-ReadLine-Gnu perl-File-Which"
pkg_install() {
vbin contrib/notmuch-mutt/notmuch-mutt
vman contrib/notmuch-mutt/notmuch-mutt.1
}
}