compressonator-git
MEDIUM
maintainer marmis
0 votes
scanned 2026-08-20 01:42:48.230657
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: Lubosz Sarnecki < lubosz at gmail dot com >
2
3
basename=compressonator
4
pkgname=$basename-git
5
pkgver=v3.2.4691+44+gbfc4b162
6
pkgrel=1
7
pkgdesc="Tool suite for Texture and 3D Model Compression, Optimization and Analysis. Lubosz's Linux GUI port branch."
8
arch=('x86_64')
9
url="https://github.com/GPUOpen-Tools/Compressonator"
10
license=('MIT')
11
replaces=('compressonator-cli-bin')
12
conflicts=('compressonator-cli-bin')
13
makedepends=('cmake' 'git' 'boost')
14
depends=('qt5-webengine' 'boost-libs' 'opencv' 'draco-git')
15
source=("git+https://github.com/lubosz/Compressonator.git#branch=gui-cmake-qt5-linux")
16
sha256sums=('SKIP')
17
18
pkgver() {
19
cd "${srcdir}/Compressonator"
20
git describe --tags | sed 's/-/+/g'
21
}
22
23
build() {
24
cd "${srcdir}"
25
rm build -rf && mkdir -p build
26
cd build
27
cmake ../Compressonator/Compressonator \
28
-DCMAKE_INSTALL_PREFIX=/usr \
29
-DCMAKE_INSTALL_LIBDIR=lib \
30
-DCMAKE_INSTALL_SBINDIR=bin \
31
-DCMAKE_INSTALL_SYSCONFDIR=/etc \
32
-DCMAKE_BUILD_TYPE=Release \
33
-DBUILD_SHARED_LIBS=on
34
make
35
}
36
37
package() {
38
cd "${srcdir}/build"
39
DESTDIR="${pkgdir}" make install
40
mv ${pkgdir}/usr/bin/CompressonatorCLI-bin ${pkgdir}/usr/bin/compressonator-cli
41
42
install -Dm644 "${srcdir}"/Compressonator/Compressonator/License/GUILicense.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
43
}
44
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-20 01:42:48 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |