mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-12 14:13:36 +00:00
9e90d1b31a
Some packages have issues with parallel builds and need to set TERMUX_MAKE_PROCESSES=1. All other build variables that package recipes set are prefixed with TERMUX_PKG, use that for MAKE_PROCESSES as well for consistency. %ci:no-build
34 lines
987 B
Bash
34 lines
987 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/kaegi/alass
|
|
TERMUX_PKG_DESCRIPTION="Automatic Language-Agnostic Subtitle Synchronization"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=2.0.0
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL="https://github.com/kaegi/alass/archive/v$TERMUX_PKG_VERSION.tar.gz"
|
|
TERMUX_PKG_SHA256=ce88f92c7a427b623edcabb1b64e80be70cca2777f3da4b96702820a6cdf1e26
|
|
TERMUX_PKG_DEPENDS="ffmpeg"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_pre_configure() {
|
|
rm -f Makefile
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
termux_setup_rust
|
|
cargo install \
|
|
--jobs $TERMUX_PKG_MAKE_PROCESSES \
|
|
--path alass-cli \
|
|
--force \
|
|
--locked \
|
|
--target $CARGO_TARGET_NAME \
|
|
--root $TERMUX_PREFIX \
|
|
$TERMUX_PKG_EXTRA_CONFIGURE_ARGS
|
|
# https://github.com/rust-lang/cargo/issues/3316:
|
|
rm -f $TERMUX_PREFIX/.crates.toml
|
|
rm -f $TERMUX_PREFIX/.crates2.json
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
install -Dm644 LICENSE "$TERMUX_PREFIX/share/licenses/alass/LICENSE"
|
|
}
|