124 lines
3.1 KiB
Bash
124 lines
3.1 KiB
Bash
# Template file for 'notmuch'
|
|
pkgname=notmuch
|
|
version=0.29.3
|
|
revision=3
|
|
hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel texinfo"
|
|
makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
|
|
short_desc="Thread-based email index, search, and tagging"
|
|
maintainer="Jan S. <jan.schreib@gmail.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://notmuchmail.org"
|
|
distfiles="https://notmuchmail.org/releases/notmuch-${version}.tar.xz"
|
|
checksum=d5f704b9a72395e43303de9b1f4d8e14dd27bf3646fdbb374bb3dbb7d150dc35
|
|
|
|
subpackages="libnotmuch libnotmuch-devel notmuch-mutt notmuch-python notmuch-python3"
|
|
patch_args=-Np1
|
|
|
|
if [ ! "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" desktop-file-utils"
|
|
makedepends+=" ruby-devel emacs"
|
|
subpackages+=" notmuch-ruby notmuch-emacs"
|
|
_args="--emacslispdir=/usr/share/emacs/site-lisp/notmuch
|
|
--emacsetcdir=/usr/share/emacs/site-lisp/notmuch"
|
|
else
|
|
_args="--without-emacs"
|
|
fi
|
|
|
|
do_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
|
|
cd bindings/python
|
|
python2 setup.py build --build-base=build-2
|
|
python3 setup.py build --build-base=build-3
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
pushd bindings/python
|
|
python2 setup.py build --build-base=build-2 \
|
|
install --prefix=/usr --root=${DESTDIR}
|
|
python3 setup.py build --build-base=build-3 \
|
|
install --prefix=/usr --root=${DESTDIR}
|
|
popd
|
|
if [ ! "$CROSS_BUILD" ]; then
|
|
make DESTDIR=${DESTDIR} -C bindings/ruby install
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
rm -f ${DESTDIR}/usr/share/applications/mimeinfo.cache
|
|
}
|
|
|
|
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() {
|
|
archs=noarch
|
|
short_desc+=" - Emacs interface"
|
|
depends="${sourcepkg}-${version}_${revision} virtual?emacs"
|
|
pkg_install() {
|
|
vmove usr/bin/notmuch-emacs-mua
|
|
vmove usr/share/applications
|
|
vmove usr/share/emacs/site-lisp
|
|
vmove usr/share/info/notmuch-emacs*
|
|
vmove usr/share/man/man1/notmuch-emacs*
|
|
}
|
|
}
|
|
|
|
notmuch-mutt_package() {
|
|
archs=noarch
|
|
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
|
|
}
|
|
}
|
|
|
|
notmuch-python_package() {
|
|
archs=noarch
|
|
depends="libnotmuch>=${version}_${revision}"
|
|
short_desc+=" - Python2 bindings"
|
|
pycompile_module="notmuch"
|
|
pkg_install() {
|
|
vmove ${py2_sitelib}
|
|
}
|
|
}
|
|
|
|
notmuch-python3_package() {
|
|
archs=noarch
|
|
depends="libnotmuch>=${version}_${revision}"
|
|
short_desc+=" - Python3 bindings"
|
|
pycompile_module="notmuch"
|
|
pkg_install() {
|
|
vmove ${py3_sitelib}
|
|
}
|
|
}
|
|
|
|
notmuch-ruby_package() {
|
|
depends="libnotmuch>=${version}_${revision} ruby"
|
|
short_desc+=" - Ruby bindings"
|
|
pkg_install() {
|
|
vmove usr/lib/ruby
|
|
}
|
|
}
|