1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-25 07:17:08 +00:00
termux-packages/packages/texlab/build.sh
Termux Github Actions 9677e46bea bump(main/texlab): 4.3.2
This commit has been automatically submitted by Github Actions.
2022-11-21 00:42:18 +00:00

18 lines
647 B
Bash

TERMUX_PKG_HOMEPAGE=https://texlab.netlify.app/
TERMUX_PKG_DESCRIPTION="A cross-platform implementation of the Language Server Protocol providing rich cross-editing support for the LaTeX typesetting system"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="4.3.2"
TERMUX_PKG_SRCURL=https://github.com/latex-lsp/texlab.git
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_rust
cargo build --jobs $TERMUX_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/texlab
}