diff options
-rw-r--r-- | community/notmuch/APKBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/community/notmuch/APKBUILD b/community/notmuch/APKBUILD index 21f40bfff1..ae3d823149 100644 --- a/community/notmuch/APKBUILD +++ b/community/notmuch/APKBUILD @@ -2,14 +2,16 @@ # Maintainer: Stefan Wagner <stw@bit-strickerei.de> pkgname=notmuch pkgver=0.23.2 -pkgrel=0 +pkgrel=1 pkgdesc="E-Mail index, search and tagging" url="https://notmuchmail.org/" arch="all" license="GPL3" -makedepends="gzip xapian-core-dev gmime-dev talloc-dev bash-completion" +makedepends="gzip xapian-core-dev gmime-dev talloc-dev + py-sphinx bash-completion" subpackages=" $pkgname-dev + $pkgname-doc $pkgname-zsh-completion:zshcomp:noarch $pkgname-bash-completion:bashcomp:noarch" source="https://notmuchmail.org/releases/$pkgname-$pkgver.tar.gz" @@ -27,12 +29,12 @@ build() { --bashcompletiondir=/usr/share/bash-completion/completions \ --zshcompletiondir=/usr/share/zsh/site-functions \ || return 1 - make PREFIX=/usr DESTDIR="$pkgdir" + make PREFIX=/usr DESTDIR="$pkgdir" || return 1 } package() { - cd "$builddir" - make PREFIX=/usr DESTDIR="$pkgdir" install + make PREFIX=/usr DESTDIR="$pkgdir" \ + -C "$builddir" install || return 1 } bashcomp() { |