blob: 4f7dae745ae95924e412c77b98e590919c14107f (
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
|
# Maintainer: Felipe Alfonso Gonzalez <f.alfonso@res-ear.ch>
pkgname=term-notes
pkgver=1.0.4
pkgrel=1
pkgdesc="Terminal-based note-taking application"
arch=('x86_64')
url="https://github.com/felipealfonsog/TermNotes"
license=('MIT')
depends=('gcc' 'vim' 'nano' 'neovim' 'libutil-linux' 'coreutils')
source=("https://github.com/felipealfonsog/TermNotes/archive/refs/tags/v.${pkgver}.tar.gz")
sha256sums=('ee0993e675697753282e874a79bce68fb433b1ecd1ca87736737ebbfba477558')
build() {
cd "$srcdir"
tar xf v.${pkgver}.tar.gz
cd "TermNotes-${pkgver}/src"
gcc -o term-notes term_notes_linux.c
}
package() {
cd "$srcdir/TermNotes-${pkgver}/src"
install -Dm755 term-notes "$pkgdir/usr/bin/term-notes"
}
|