mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 22:35:42 +03:00
16 lines
515 B
Bash
16 lines
515 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -euxo pipefail
|
||
|
|
|
||
|
|
apt-get -qq update
|
||
|
|
|
||
|
|
if [[ "${TARGETARCH}" == "amd64" ]]; then
|
||
|
|
arch="x86_64"
|
||
|
|
elif [[ "${TARGETARCH}" == "arm64" ]]; then
|
||
|
|
arch="aarch64"
|
||
|
|
fi
|
||
|
|
|
||
|
|
wget -qO- "https://github.com/GaryHuang-ASUS/frigate-synaptics-rt/releases/download/v1.5.0-1.0/synaptics-rt-1.0.tar" | tar -C / -xzf -
|
||
|
|
wget -P /wheels/ "https://github.com/synaptics-synap/synap-python/releases/download/v0.0.4-preview/synap_python-0.0.4-cp311-cp311-manylinux_2_35_aarch64.whl"
|
||
|
|
cp /rootfs/usr/local/lib/* /usr/local/lib
|