summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f6fb16009fb0cea3e3e1bfbe3c694a8b889222f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer:
# Contributor: Pierre Neidhardt <ambrevar@gmail.com>
# Contributor: csllbr; Popsch <popsch@gmx.net>

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

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
}