minke-bin

LOW
maintainer czyt 0 votes scanned 2026-08-20 15:11:35.617252
View on AUR
Why flagged

The package installs a prebuilt .deb from the project's official GitHub release, which is a normal AUR practice; the binary is from a trusted project source, and no malicious behavior is evident.

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.

Low AI review llm_review

An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package installs a prebuilt .deb from the project's official GitHub release, which is a normal AUR practice; the binary is from a trusted project source, and no malicious behavior is evident.

PKGBUILD

1# Maintainer: czyt <czytcn@gmail.com>
2
3pkgname=minke-bin
4pkgver=0.1.0
5pkgrel=2
6pkgdesc="Minke desktop agent powered by DeepSeek Harness"
7arch=('x86_64')
8url="https://github.com/lencx/Minke"
9license=('Apache-2.0')
10
11depends=(
12 'alsa-lib'
13 'at-spi2-core'
14 'cairo'
15 'dbus'
16 'expat'
17 'gcc-libs'
18 'glib2'
19 'glibc'
20 'gtk3'
21 'libcups'
22 'libdrm'
23 'libevdev'
24 'libnotify'
25 'libsecret'
26 'libx11'
27 'libxcb'
28 'libxcomposite'
29 'libxdamage'
30 'libxext'
31 'libxfixes'
32 'libxkbcommon'
33 'libxrandr'
34 'libxss'
35 'libxtst'
36 'mesa'
37 'nspr'
38 'nss'
39 'pango'
40 'systemd-libs'
41 'util-linux-libs'
42 'wayland'
43 'xdg-utils'
44)
45optdepends=(
46 'pulseaudio: audio playback (or pipewire)'
47)
48makedepends=('libarchive')
49provides=("minke=${pkgver}")
50conflicts=('minke')
51options=('!debug' '!strip')
52
53_deb="Minke-linux-x64-${pkgver}.deb"
54source=("${_deb}::https://github.com/lencx/Minke/releases/download/v${pkgver}/Minke-linux-x64.deb")
55noextract=("${_deb}")
56sha256sums=('b940aee7252a375aa488f5f87c16e9dd35e0b143b56244e946ccaf50bec36fae')
57
58package() {
59 local data_archive
60
61 data_archive="$(bsdtar -tf "${srcdir}/${_deb}" | sed -n '/^data\.tar\./{p;q;}')"
62 if [[ -z "${data_archive}" ]]; then
63 error "Could not find data.tar.* in ${_deb}"
64 return 1
65 fi
66
67 bsdtar -xOf "${srcdir}/${_deb}" "${data_archive}" |
68 bsdtar --no-same-owner -xf - -C "${pkgdir}"
69
70 # Restore the Chromium sandbox setuid bit (lost when extracting as non-root).
71 chmod 4755 "${pkgdir}/usr/lib/minke/chrome-sandbox"
72
73 # Debian packaging metadata is not used on Arch Linux.
74 rm -r "${pkgdir}/usr/share/lintian"
75}
76

Scan history

Scanned at (UTC)SeverityRules
2026-08-20 15:11:35 Low 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion