blob: 6143636716c1a78ee02b62174a7ac76ea861a427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Rhinoceros <https://aur.archlinux.org/account/rhinoceros>
pkgname=nottoomuch-addresses-git
pkgver=r45.fdfe30e
pkgrel=1
pkgdesc='An email address completion/matching tool'
arch=('any')
url='https://github.com/domo141/nottoomuch/blob/master/nottoomuch-addresses.rst'
license=('BSD-2-Clause')
depends=('notmuch')
makedepends=('git')
source=("git+https://github.com/domo141/${pkgname%-addresses-git}.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-addresses-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
install -Dm755 "${pkgname%-addresses-git}/${pkgname%-git}.sh" "$pkgdir/usr/bin/${pkgname%-git}.sh"
}
|