dexo-bin
The package downloads prebuilt binaries from GitHub releases, which is a supply-chain risk if the host is compromised, but the sources are from the project's official repository with verifiable checksums, limiting impact to potential binary tampering.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package downloads prebuilt binaries from GitHub releases, which is a supply-chain risk if the host is compromised, but the sources are from the project's official repository with verifiable checksums, limiting impact to potential binary tampering.
PKGBUILD
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
_gitauthor=KingDasWinx
_gitname=Dexo
_appname=${_gitname,,}
pkgname=${_appname}-bin
pkgdesc="A terminal database workbench for PostgreSQL and MySQL"
pkgver=1.4.0
pkgrel=1
_gitversion=v${pkgver}
arch=('x86_64' 'aarch64')
_barch=('x86_64-unknown-linux-gnu' 'aarch64-unknown-linux-gnu')
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
url=${_ghurl}
license=('MIT' 'Apache-2.0')
provides=("${_appname}")
conflicts=("${pkgname%-bin}")
depends=('glibc' 'libgcc')
options=('!strip')
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_appname}-${_barch[0]}.tar.gz")
source_aarch64=("${_appname}-${arch[1]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_appname}-${_barch[1]}.tar.gz")
sha256sums_x86_64=('74e3241f384fc8b89db2e712c2e18ea6be43cb48c83ad717808085dd1179dc11')
sha256sums_aarch64=('8a1b058775cce26652241a47f06b5e07ceb7fee87c21e81c21154a31c2ed29f9')
case ${CARCH} in
${arch[0]})
_CARCH=${_barch[0]}
;;
${arch[1]})
_CARCH=${_barch[1]}
;;
esac
package() {
cd "${srcdir}/${_appname}-${_CARCH}/" || exit
install -Dm755 ${_appname} -t "${pkgdir}/usr/bin/"
install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
install -Dm644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}/"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 01:45:24 | Low | 2 |