blob: 05bcb52c08bd64967cec9d3add514039c6ff4862 (
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
|
# 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")
build() {
cd "${srcdir}/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"
}
sha256sums=('ee0993e675697753282e874a79bce68fb433b1ecd1ca87736737ebbfba477558')
|