blob: 540b1e4c804fdf16e497efb8bd98a18654f65a0f (
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
|
# Maintainer: Primalmotion <primalmotion at pm dot me>
pkgname=remindme
pkgdesc="Simple tool to add remind(1) task using natural language processing"
url="https://git.sr.ht/~primalmotion/remindme"
pkgver=v1.2.0
pkgrel=1
license=(GPL3)
arch=(any)
depends=(remind)
makedepends=(go pandoc)
source=("https://git.sr.ht/~primalmotion/remindme/archive/${pkgver}.tar.gz")
sha1sums=('cdccd544e407507a927bfddc773c14c3f6ff0c09')
provides=("remindme")
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
make remindme
make man
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
PREFIX=${pkgdir}/usr make install
}
|