summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Röthke2022-06-29 22:10:53 +0200
committerMarcel Röthke2022-06-29 22:10:53 +0200
commit94f7195b383c6257ea113f15f692b8d8fa2c015f (patch)
tree5b3f029c9383837ad2f6b7ebe18808a1d8031c59
parent4b91b626d67b6b3fcd9076f9dbd92520e870269c (diff)
downloadaur-94f7195b383c6257ea113f15f692b8d8fa2c015f.tar.gz
mu: upstream release 1.8.2
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD14
2 files changed, 10 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7e99cf455928..357261d46e61 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = mu
pkgdesc = Maildir indexer/searcher and Emacs client (mu4e)
- pkgver = 1.8.1
+ pkgver = 1.8.2
pkgrel = 1
url = http://www.djcbsoftware.nl/code/mu
arch = x86_64
@@ -12,7 +12,7 @@ pkgbase = mu
depends = xapian-core
depends = guile3
optdepends = emacs: mu4e support
- source = https://github.com/djcb/mu/releases/download/v1.8.1/mu-1.8.1.tar.xz
- sha256sums = 4412b65fda07bd2461b8357711e920fc26ded7ec48f47173ba518ccb7fcac3fa
+ source = https://github.com/djcb/mu/releases/download/v1.8.2/mu-1.8.2.tar.xz
+ sha256sums = ffac259cd594a10e948f36937fa32e1307aa35259eae9b858c0b92329166533f
pkgname = mu
diff --git a/PKGBUILD b/PKGBUILD
index 8b9f5e9d2b62..085e9c576bfc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: csllbr; Popsch <popsch@gmx.net>
pkgname=mu
-pkgver=1.8.1
+pkgver=1.8.2
pkgrel=1
pkgdesc="Maildir indexer/searcher and Emacs client (mu4e)"
arch=("x86_64" "armv7h")
@@ -13,20 +13,20 @@ depends=("gmime3" "xapian-core" "guile3")
makedepends=("emacs" "meson")
optdepends=("emacs: mu4e support")
source=("https://github.com/djcb/mu/releases/download/v${pkgver}/mu-${pkgver}.tar.xz")
-sha256sums=('4412b65fda07bd2461b8357711e920fc26ded7ec48f47173ba518ccb7fcac3fa')
+sha256sums=('ffac259cd594a10e948f36937fa32e1307aa35259eae9b858c0b92329166533f')
prepare() {
cd "$pkgname-$pkgver"
- meson \
- build \
- --prefix=/usr \
- --buildtype=plain \
+ arch-meson \
-Dc_args="${CFLAGS}" \
-Dcpp_args="${CFLAGS}" \
-Dc_link_args="${LDFLAGS}" \
-Dcpp_link_args="${LDFLAGS}" \
-Dguile=enabled \
- -Dreadline=enabled
+ -Dreadline=enabled \
+ build
+
+
}