android-armv7a-eabi-libvpl
maintainer nicolenusslin
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from a legitimate source tarball hosted on GitHub (intel/libvpl), which is the project's official repository; the flagged 'recently orphaned & re-adopted' status does not indicate inherent danger, and the build process is transparent and follows standard AUR practices.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from a legitimate source tarball hosted on GitHub (intel/libvpl), which is the project's official repository; the flagged 'recently orphaned & re-adopted' status does not indicate inherent danger, and the build process is transparent and follows standard AUR practices.
1 higher static finding superseded - not the current verdict (shown for transparency)
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: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
2
# Contributor: Daniel Bermond <dbermond@archlinux.org>
3
4
_android_arch=armv7a-eabi
5
6
pkgname=android-${_android_arch}-libvpl
7
pkgver=2.16.0
8
pkgrel=1
9
arch=('any')
10
pkgdesc="Intel Video Processing Library (Android ${_android_arch})"
11
url='https://intel.github.io/libvpl/'
12
license=('MIT')
13
groups=('android-libvpl')
14
depends=("android-${_android_arch}-libdrm"
15
"android-${_android_arch}-libva"
16
"android-${_android_arch}-libx11")
17
makedepends=('android-cmake'
18
"android-${_android_arch}-libpciaccess")
19
options=(!strip !buildflags staticlibs !emptydirs)
20
source=("https://github.com/intel/libvpl/archive/v${pkgver}/libvpl-${pkgver}.tar.gz")
21
md5sums=('1cff23c778a647522bcc669d93e1d8b5')
22
23
build() {
24
cd "${srcdir}/libvpl-${pkgver}"
25
source android-env ${_android_arch}
26
27
export CFLAGS="${CFLAGS} -DNDEBUG"
28
export CXXFLAGS="${CXXFLAGS} -DNDEBUG"
29
30
android-${_android_arch}-cmake \
31
-S . \
32
-B build-shared \
33
-DCMAKE_INSTALL_SYSCONFDIR="${ANDROID_PREFIX_ETC}" \
34
-DBUILD_SHARED_LIBS=ON \
35
-DBUILD_TOOLS=OFF \
36
-DBUILD_EXAMPLES=OFF \
37
-DBUILD_TESTS=OFF \
38
-DINSTALL_EXAMPLE_CODE=OFF \
39
-DTOOLS_ENABLE_OPENCL=OFF \
40
-Wno-dev
41
make -C build-shared $MAKEFLAGS
42
43
android-${_android_arch}-cmake \
44
-S . \
45
-B build-static \
46
-DCMAKE_INSTALL_SYSCONFDIR="${ANDROID_PREFIX_ETC}" \
47
-DBUILD_SHARED_LIBS=OFF \
48
-DBUILD_TOOLS=OFF \
49
-DBUILD_EXAMPLES=OFF \
50
-DBUILD_TESTS=OFF \
51
-DINSTALL_EXAMPLE_CODE=OFF \
52
-DTOOLS_ENABLE_OPENCL=OFF \
53
-Wno-dev
54
make -C build-static $MAKEFLAGS
55
}
56
57
package() {
58
cd "${srcdir}/libvpl-${pkgver}"
59
source android-env ${_android_arch}
60
61
make -C build-shared DESTDIR="${pkgdir}" install
62
make -C build-static DESTDIR="${pkgdir}" install
63
rm -rf "${pkgdir}/${ANDROID_PREFIX_SHARE}"
64
${ANDROID_STRIP} -g --strip-unneeded "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.so
65
${ANDROID_STRIP} -g "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.a
66
67
install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
68
}
69
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 17:15:21 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |