0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-12 00:10:52 +00:00
Termux Github Actions 8231b824af bump(main/dufs): 0.43.0
This commit has been automatically submitted by Github Actions.
2024-11-05 12:13:25 +00:00

37 lines
1.4 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/sigoden/dufs
TERMUX_PKG_DESCRIPTION="A file server that supports static serving, uploading, searching, accessing control, webdav..."
TERMUX_PKG_LICENSE="Apache-2.0,MIT"
TERMUX_PKG_LICENSE_FILE="LICENSE-APACHE,LICENSE-MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.43.0"
TERMUX_PKG_SRCURL=https://github.com/sigoden/dufs/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=4ba3b90486336efc4e592bcf15f14d4e3b6ac7b3b1bf8770815b8c43975d8b01
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_rust
cargo build --jobs $TERMUX_PKG_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
}
termux_step_post_make_install() {
install -Dm755 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/dufs
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/bash-completion/completions/dufs
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/zsh/site-functions/_dufs
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/fish/vendor_completions.d/dufs.fish
}
termux_step_create_debscripts() {
cat <<- EOF > ./postinst
#!$TERMUX_PREFIX/bin/sh
dufs --completions bash \
> "$TERMUX_PREFIX"/share/bash-completion/completions/dufs
dufs --completions zsh \
> "$TERMUX_PREFIX"/share/zsh/site-functions/_dufs
dufs --completions fish \
> "$TERMUX_PREFIX"/share/fish/vendor_completions.d/dufs.fish
EOF
}