summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2bb8e1ae0c49a1e7efb599d097ae138b8d6143f8 (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: thek4n

pkgname='note-manager'
pkgver=1.17.0
pkgrel=1
pkgdesc="Simple CLI notes manager"
arch=('any')
url='https://github.com/thek4n/note'
license=('MIT')
depends=(
  'git'
)
optdepends=(
  'fzf: find notes'
  'bat: render notes in terminal'
  'tree: tree of notes'
)
conflicts=('note-manager')
source=("$pkgname::git+https://github.com/thek4n/note.git#branch=master")
sha256sums=('SKIP')

package() {
    cd "$srcdir"/"$pkgname"
    make DESTDIR="$pkgdir" PREFIX="/usr" install
}