blob: 3e8685266b8197e1884894de522ce1e6ab02a8e0 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Maintainer: Sebastian Wiesner <sebastian@swsnr.de>
# Contributor: Vlad Petrov <ejiek@mail.ru>
pkgname=nb
pkgver=6.7.9
pkgrel=5
pkgdesc="A command line note-taking, bookmarking, archiving, and knowledge base application"
arch=('any')
url="https://github.com/xwmx/${pkgname}"
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
license=('AGPL3')
depends=('bash' 'git')
optdepends=(
# Recommended
'bat: recommended'
'nmap: for ncat, recommended' # For ncat
'pandoc: recommended'
'ripgrep: recommended'
'tig: recommended'
'w3m: recommended'
# Additional
'ack'
'the_silver_searcher'
'catimg'
'exa'
'ffmpeg' # For ffplay
'imagemagick'
'gnupg'
'highlight'
'links'
'lynx'
'mc'
'mpg123'
'mplayer'
'poppler' # For pdftotext
'python-pygments'
'ranger'
'readability-cli'
'ripgrep-all'
'termpdf.py-git'
'vifm'
)
sha512sums=('310e3043fd0ed9dd5f792bf830320b09059db833514264cfae6716625e3262416ea5d0660f1703d2152a883364f9f34a70354efe17befd419e8976770802e821')
package() {
cd "${pkgname}-${pkgver}"
install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README.md "$pkgdir/usr/share/doc/${pkgname}/README.md"
# Completions
install -Dm644 etc/nb-completion.bash "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
install -Dm644 etc/nb-completion.zsh "${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
# Plugins
install -Dm644 -t "${pkgdir}/usr/share/nb/plugins/" plugins/*
}
|