mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-29 22:22:39 +00:00
- Based loosely on Arch Linux package 316a0781e6/PKGBUILD
- Has been tested and confirmed to work with the example in README https://github.com/meta-pytorch/torchcodec?tab=readme-ov-file#decoding
33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/pytorch/torchcodec
|
|
TERMUX_PKG_DESCRIPTION="PyTorch media decoding and encoding"
|
|
TERMUX_PKG_LICENSE="BSD 3-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.8.1"
|
|
TERMUX_PKG_SRCURL="https://github.com/pytorch/torchcodec/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz"
|
|
TERMUX_PKG_SHA256=86e2d8919fecf8f7c171057a120acce721d059f1625f45cdd6cf88b0035cbd52
|
|
TERMUX_PKG_DEPENDS="ffmpeg, google-glog, libc++, python, python-torch"
|
|
TERMUX_PKG_BUILD_DEPENDS="pybind11"
|
|
TERMUX_PKG_PYTHON_COMMON_DEPS="build"
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_cmake
|
|
termux_setup_ninja
|
|
|
|
# (This message is based on the equivalent message in Arch Linux package)
|
|
# setup.py requires setting this to use the system ffmpeg libraries
|
|
# https://github.com/pytorch/torchcodec/blob/1acff9c4cffe8b65f77cd892162cd9ed1b2d75e2/setup.py#L176-L189
|
|
# The Termux ffmpeg package is GPL-licensed (--enable-gpl)
|
|
export I_CONFIRM_THIS_IS_NOT_A_LICENSE_VIOLATION=1
|
|
|
|
export TORCH_CMAKE_DIR="$TERMUX_PYTHON_HOME/site-packages/torch/share/cmake/Torch"
|
|
export PYTHON_EXECUTABLE="$(command -v python)"
|
|
}
|
|
|
|
termux_step_configure() {
|
|
:
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
pip -v install --no-build-isolation --no-deps --prefix "$TERMUX_PREFIX" "$TERMUX_PKG_SRCDIR"
|
|
}
|