asst-git
LOW
maintainer jaehho
0 votes
scanned 2026-09-22 03:36:46.988110
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: Jaeho Cho <jaeho2025@gmail.com>
2
pkgname=asst-git
3
_pkgname=asst
4
pkgver=0.1.0
5
pkgrel=1
6
pkgdesc="Tasks and reminders on a CalDAV server (Nextcloud): daemon, CLI, GTK window, quick add, waybar module"
7
arch=('x86_64')
8
url="https://github.com/jaehho/asst"
9
license=('MIT')
10
depends=('dbus' 'gcc-libs' 'glibc' 'gtk4' 'libadwaita' 'gtk4-layer-shell')
11
makedepends=('git' 'rustup')
12
optdepends=('gnome-keyring: or another Secret Service provider, to hold the app password'
13
'waybar: for `asst bar`')
14
provides=('asst')
15
conflicts=('asst')
16
options=('!lto' '!debug')
17
source=("git+https://github.com/jaehho/asst.git")
18
sha256sums=('SKIP')
19
20
pkgver() {
21
cd "$_pkgname"
22
local desc
23
if desc=$(git describe --long --tags --abbrev=7 2>/dev/null); then
24
printf '%s' "$desc" | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
25
else
26
printf '0.1.0.r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
27
fi
28
}
29
30
build() {
31
cd "$_pkgname"
32
export RUSTUP_TOOLCHAIN=stable
33
export RUSTFLAGS="${RUSTFLAGS:-} --remap-path-prefix=$srcdir=/"
34
cargo build --release --locked --workspace
35
}
36
37
check() {
38
cd "$_pkgname"
39
cargo test --release --locked --workspace
40
}
41
42
package() {
43
cd "$_pkgname"
44
install -Dm755 target/release/asst "$pkgdir/usr/bin/asst"
45
install -Dm755 target/release/asstd "$pkgdir/usr/bin/asstd"
46
install -Dm755 target/release/asst-gtk "$pkgdir/usr/bin/asst-gtk"
47
install -Dm644 packaging/dev.jaeho.Asst.desktop "$pkgdir/usr/share/applications/dev.jaeho.Asst.desktop"
48
install -Dm644 packaging/icons/dev.jaeho.Asst.svg "$pkgdir/usr/share/icons/hicolor/scalable/apps/dev.jaeho.Asst.svg"
49
install -Dm644 packaging/asstd.service "$pkgdir/usr/lib/systemd/user/asstd.service"
50
install -Dm644 packaging/dev.jaeho.Asst.Daemon.service "$pkgdir/usr/share/dbus-1/services/dev.jaeho.Asst.Daemon.service"
51
install -Dm644 packaging/dev.jaeho.Asst.service "$pkgdir/usr/share/dbus-1/services/dev.jaeho.Asst.service"
52
install -Dm644 nvim/plugin/asst.lua "$pkgdir/usr/share/asst/nvim/plugin/asst.lua"
53
install -Dm644 nvim/lua/asst.lua "$pkgdir/usr/share/asst/nvim/lua/asst.lua"
54
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
55
}
56
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-22 03:36:46 | Low | 1 |