blob: 9911c88b8f3e20b2d87521b83ffe3a77a700c442 (
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
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Pierre Ayoub (Drack) <pierreay@proton.me>
pkgbase=notmuch-tools
pkgname=notmuch-tools-git
pkgver=r87.84c38f0
pkgrel=1
pkgdesc="A set of small command-line tools for the Notmuch mail indexer, including tag synchronization across machines."
arch=(any)
url="https://framagit.org/manu/notmuch-tools"
license=('GPL')
groups=()
depends=()
makedepends=(git notmuch-runtime glib2-devel gmime3 sqlite)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
replaces=()
backup=()
options=()
install=
source=("${pkgname%-git}::git+https://framagit.org/manu/${pkgname%-git}")
noextract=()
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
# Git, no tags available
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/${pkgname%-git}"
make
}
package() {
cd "$srcdir/${pkgname%-git}"
make PREFIX="$pkgdir/usr" install
}
|