zls-git
MEDIUM
maintainer swiftscythe
4 votes
scanned 2026-09-27 13:18:29.354985
Why flagged
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
Triggered rules
Medium
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer: nycex <nycex / cccp.org>
2
_pkgbasename=zls
3
pkgname=${_pkgbasename}-git
4
pkgrel=1
5
pkgver=r1683.f96b226
6
pkgdesc="Zig LSP implementation + Zig Language Server"
7
arch=('x86_64' 'aarch64' 'i686')
8
url="https://github.com/zigtools/${_pkgbasename}"
9
provides=('zls')
10
conflicts=('zls')
11
replaces=('zls-master-data-git')
12
license=('MIT')
13
depends=('zig')
14
makedepends=('git')
15
source=(git+https://github.com/zigtools/${_pkgbasename})
16
sha256sums=('SKIP')
17
18
pkgver() {
19
cd "${srcdir}/${_pkgbasename}"
20
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
21
}
22
23
build() {
24
cd "${srcdir}/${_pkgbasename}"
25
zig build -Doptimize=ReleaseSafe
26
}
27
28
package() {
29
cd "${srcdir}/${_pkgbasename}"
30
31
install -D -m755 zig-out/bin/$_pkgbasename "${pkgdir}/usr/bin/$_pkgbasename"
32
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$_pkgbasename/LICENSE"
33
}
34
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 13:18:29 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |