diff --git a/srcpkgs/rav1e/template b/srcpkgs/rav1e/template index 7e169a2af9d..28d403af015 100644 --- a/srcpkgs/rav1e/template +++ b/srcpkgs/rav1e/template @@ -16,12 +16,15 @@ case "$XBPS_TARGET_MACHINE" in esac post_build() { + # 32 bit off_t, no idea how to widen it + if [ "$XBPS_WORDSIZE" = 32 ]; then return; fi cargo auditable cbuild --release --target ${RUST_TARGET} \ --library-type cdylib --library-type staticlib \ --destdir="${DESTDIR}" --prefix="/usr" ${configure_args} } post_install() { + if [ "$XBPS_WORDSIZE" = 32 ]; then return; fi cargo auditable cinstall --release --target ${RUST_TARGET} \ --library-type cdylib --library-type staticlib \ --destdir="${DESTDIR}" --prefix="/usr" --offline --locked ${configure_args}