Package Details: mu 1.12.5-1

Git Clone URL: https://aur.archlinux.org/mu.git (read-only, click to copy)
Package Base: mu
Description: Maildir indexer/searcher and Emacs client (mu4e)
Upstream URL: http://www.djcbsoftware.nl/code/mu
Licenses: GPL-3.0-or-later
Submitter: xyproto
Maintainer: mroethke
Last Packager: mroethke
Votes: 45
Popularity: 0.34
First Submitted: 2019-03-27 09:21 (UTC)
Last Updated: 2024-05-03 17:46 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5

pmatos commented on 2020-07-13 13:33 (UTC) (edited on 2020-07-14 08:23 (UTC) by pmatos)

It seems this is being built without encrytion support. Can we please add this?

EDIT: Since 1.4 all version of mu come with encryption support - pls disregard.

mroethke commented on 2020-04-20 09:59 (UTC)

done

suger commented on 2020-04-19 06:06 (UTC)

Would you mind adding armv7h to the arch line? It builds and works smoothly on this architecture.

mroethke commented on 2019-08-02 09:30 (UTC)

1.3.x is a (quoting from the NEWS file) unreleased, experimental/development version therefore 1.2 is indeed the latest stable release.

mroethke commented on 2019-04-17 14:59 (UTC)

Sure, thank you for pointing that out.

dreieck commented on 2019-04-16 09:41 (UTC)

Can you add make to build(), so that compilation is carried out in build() and not on package()?

Can you move autoreconf -i from build() to prepare()?

mroethke commented on 2019-04-09 11:12 (UTC)

No, emacs is needed to build mu4e.

nac commented on 2019-04-09 01:45 (UTC)

The package builds just fine without emacs as a makedepend. Can you please remove it?

emacsomancer commented on 2019-04-07 19:00 (UTC) (edited on 2019-04-07 19:02 (UTC) by emacsomancer)

# Maintainer:
# Contributor: Pierre Neidhardt <ambrevar@gmail.com>
# Contributor: csllbr; Popsch <popsch@gmx.net>

pkgname=mu
pkgver=1.2
pkgrel=1
pkgdesc="Maildir indexer/searcher and Emacs client (mu4e)"
arch=("x86_64")
url="<http://www.djcbsoftware.nl/code/mu>"
license=("GPL")
depends=("gmime3" "xapian-core" "guile2.0")
makedepends=("emacs")
optdepends=("guile: guile support"
"emacs: mu4e support")
source=("<https://github.com/djcb/mu/archive/>$pkgver.tar.gz")
md5sums=('5e7d7c3549b9428ec0b5ea7d374b6d0d')

build() { 
   cd "$pkgname-$pkgver"
 autoreconf -i
./configure --prefix=/usr --disable-webkit --disable-gtk --enable-mu4e --enable-guile
}

package() {
 cd "$pkgname-$pkgver"
 make DESTDIR="$pkgdir" install
}