lazycmake-bin
LOW
maintainer Dominiquini
1 votes
scanned 2026-09-26 03:13:55.736981
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: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
2
3
_gitauthor=ligogeorge
4
_gitname=lazycmake
5
_appname=${_gitname}
6
pkgname=${_appname}-bin
7
pkgdesc="A terminal UI for CMake projects"
8
9
pkgver=0.1.7
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64' 'aarch64')
14
_barch=('x86_64-unknown-linux-gnu' 'aarch64-unknown-linux-gnu')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('MIT')
21
22
provides=("${_appname}")
23
conflicts=("${pkgname%-bin}")
24
25
depends=('glibc' 'libgcc' 'cmake')
26
27
options=('!strip')
28
29
source=("CONFIG-${pkgver}.toml::${_ghurlraw}/examples/config.toml")
30
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[0]}.tar.gz")
31
source_aarch64=("${_appname}-${arch[1]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[1]}.tar.gz")
32
sha256sums=('701bed84711ce3e8fe400f8976cc13601c5ff184342b6f4aa55eb70d69aab66e')
33
sha256sums_x86_64=('335e35e704de387858b14df05c6262b51acfd214f47b4b192b175ee26fab54fd')
34
sha256sums_aarch64=('4121a45376ff561425e98e8106043366359d02fae324ead8d8b8d969cd91d212')
35
36
37
case ${CARCH} in
38
${arch[0]})
39
_CARCH=${_barch[0]}
40
;;
41
42
${arch[1]})
43
_CARCH=${_barch[1]}
44
;;
45
esac
46
47
package() {
48
cd "${srcdir}/${_gitname}-${_gitversion}-${_CARCH}/" || exit
49
50
install -Dm755 "${_appname}" "${pkgdir}/usr/bin/${_appname}"
51
52
install -Dm644 "../CONFIG-${pkgver}.toml" "${pkgdir}/usr/share/doc/${pkgname}/config/config.example.toml"
53
54
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
55
56
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
57
}
58
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-26 03:13:55 | Low | 1 |