ustreamer
MEDIUM
maintainer FabioLolix
3 votes
scanned 2026-09-06 15:12:20.220602
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
# Contributor: Maxim Devaev <mdevaev@gmail.com>
2
# Author: Maxim Devaev <mdevaev@gmail.com>
3
4
5
pkgname=ustreamer
6
pkgver=6.31
7
pkgrel=1
8
pkgdesc="Lightweight and fast MJPEG-HTTP streamer"
9
url="https://github.com/pikvm/ustreamer"
10
license=(GPL)
11
arch=(i686 x86_64 armv6h armv7h aarch64)
12
depends=(libjpeg libevent libbsd libgpiod systemd)
13
makedepends=(gcc make pkgconf systemd)
14
source=(${pkgname}::"git+https://github.com/pikvm/ustreamer#commit=v${pkgver}")
15
md5sums=(SKIP)
16
17
18
_options="WITH_GPIO=1 WITH_SYSTEMD=1"
19
if [ -e /usr/bin/python3 ]; then
20
_options="$_options WITH_PYTHON=1"
21
depends+=("python>=3.13" "python<3.14")
22
makedepends+=(python-setuptools python-pip python-build python-wheel)
23
fi
24
if [ -e /usr/include/janus/plugins/plugin.h ];then
25
depends+=(janus-gateway alsa-lib opus)
26
makedepends+=(janus-gateway alsa-lib opus)
27
_options="$_options WITH_JANUS=1"
28
fi
29
30
31
build() {
32
cd "$srcdir"
33
rm -rf $pkgname-build
34
cp -r $pkgname $pkgname-build
35
cd $pkgname-build
36
make $_options CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" $MAKEFLAGS
37
}
38
39
package() {
40
cd "$srcdir/$pkgname-build"
41
make $_options CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" DESTDIR="$pkgdir" PREFIX=/usr install
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-06 15:12:20 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |