blob: 3f256d3470c5f93f3b8d4cdbac75da4ee4a53081 (
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://codeberg.org/primalmotion/remindme"
pkgver=v1.2.0
pkgrel=1
license=(GPL3)
arch=(any)
depends=(remind)
makedepends=(go pandoc)
source=("https://codeberg.org/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
}
|