appimg
LOW
maintainer MrGilfy
0 votes
scanned 2026-08-31 21:46:19.858046
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: MrGilfy <MrGilfy@users.noreply.github.com>
2
3
pkgname=appimg
4
pkgver=0.1.1
5
pkgrel=1
6
pkgdesc="Install, update and remove AppImages as proper desktop applications"
7
arch=('x86_64')
8
url="https://github.com/MrGilfy/appimg"
9
license=('MIT')
10
options=('!lto')
11
depends=('gcc-libs' 'glibc')
12
makedepends=('cargo')
13
optdepends=('fuse2: needed by most AppImages at runtime'
14
'appimageupdatetool: delta updates via zsync'
15
'desktop-file-utils: desktop database updates'
16
'gtk-update-icon-cache: icon cache updates')
17
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
18
sha256sums=('19a54faed962806c4304aef986be193f43b797fade21c4fe6ffab38953b98d16')
19
20
prepare() {
21
cd "$pkgname-$pkgver"
22
export RUSTUP_TOOLCHAIN=stable
23
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
24
}
25
26
build() {
27
cd "$pkgname-$pkgver"
28
export RUSTUP_TOOLCHAIN=stable
29
export CARGO_TARGET_DIR=target
30
cargo build --frozen --release --all-features
31
}
32
33
check() {
34
cd "$pkgname-$pkgver"
35
export RUSTUP_TOOLCHAIN=stable
36
cargo test --frozen
37
}
38
39
package() {
40
cd "$pkgname-$pkgver"
41
42
install -Dm0755 -t "$pkgdir/usr/bin/" target/release/appimg
43
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
44
45
# The man page and the completions are generated by the build, see
46
# crates/cli/build.rs.
47
install -Dm0644 -t "$pkgdir/usr/share/man/man1/" man/appimg.1
48
install -Dm0644 completions/appimg.fish \
49
"$pkgdir/usr/share/fish/vendor_completions.d/appimg.fish"
50
install -Dm0644 completions/appimg.bash \
51
"$pkgdir/usr/share/bash-completion/completions/appimg"
52
install -Dm0644 completions/_appimg \
53
"$pkgdir/usr/share/zsh/site-functions/_appimg"
54
}
55
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-31 21:46:19 | Low | 1 |