1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-13 09:16:38 +00:00
termux-packages/packages/stylua/build.sh
Termux Github Actions bf3909d642 bump(main/stylua): 0.15.3
This commit has been automatically submitted by Github Actions.
2022-12-07 18:39:45 +00:00

20 lines
713 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/JohnnyMorganz/StyLua
TERMUX_PKG_DESCRIPTION="An opinionated Lua code formatter"
TERMUX_PKG_LICENSE="MPL-2.0"
TERMUX_PKG_MAINTAINER="@shadmansaleh"
TERMUX_PKG_VERSION="0.15.3"
TERMUX_PKG_SRCURL=https://github.com/JohnnyMorganz/StyLua/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=37feff9a52c2355419cb5dabdc6dac15f6fbef7d91b7cd9f33bd593efe278306
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
termux_setup_rust
cargo build --jobs $TERMUX_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release --all-features
}
termux_step_make_install() {
install -Dm755 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/stylua
}