notedog
LOW
maintainer woofson
0 votes
scanned 2026-08-22 09:16:51.748650
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Bolt J Woofson <bolt@boop.no>
2
pkgname=notedog
3
pkgver=0.5.3
4
pkgrel=1
5
pkgdesc="A vibrant, cross-platform TUI Notes application in Rust inspired by OneNote and Obsidian"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/Woofson/notedog"
8
license=('MIT')
9
depends=('gcc-libs' 'glibc')
10
makedepends=('cargo')
11
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
12
sha256sums=('a53068288af87c11b0a5acb1b3f4ef861c9558dcb03ae5509974bfc552ff22fe')
13
14
build() {
15
cd "$pkgname-$pkgver"
16
export CARGO_TARGET_DIR=target
17
cargo build --release --frozen
18
}
19
20
check() {
21
cd "$pkgname-$pkgver"
22
cargo test --frozen
23
}
24
25
package() {
26
cd "$pkgname-$pkgver"
27
install -Dm755 "target/release/notedog" "$pkgdir/usr/bin/notedog"
28
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
29
install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
30
install -Dm644 "notedog.toml.example" "$pkgdir/usr/share/doc/$pkgname/notedog.toml.example"
31
install -Dm644 "theme.toml.example" "$pkgdir/usr/share/doc/$pkgname/theme.toml.example"
32
for theme in themes/*.toml; do
33
install -Dm644 "$theme" "$pkgdir/usr/share/doc/$pkgname/$theme"
34
done
35
}
36
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-22 09:16:51 | Low | 1 |