termux-packages/packages/miniserve/build.sh

37 lines
1.3 KiB
Bash
Raw Normal View History

2021-08-06 17:21:56 +02:00
TERMUX_PKG_HOMEPAGE=https://github.com/svenstaro/miniserve
TERMUX_PKG_DESCRIPTION="Tool to serve files via HTTP"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.14.0
TERMUX_PKG_REVISION=2
2021-08-06 17:21:56 +02:00
TERMUX_PKG_SRCURL=https://github.com/svenstaro/miniserve/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=68e21c35a4577251f656f3d1ccac2de23abd68432810b11556bcc8976bb19fc5
TERMUX_PKG_DEPENDS=libbz2
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
rm -f Makefile
}
termux_step_create_debscripts() {
cat <<- EOF > ./postinst
#!$TERMUX_PREFIX/bin/sh
# Generating completions
mkdir -p "$TERMUX_PREFIX"/share/{bash-completion/completions,zsh/site-functions,fish/vendor_completions.d}
miniserve --print-completions bash \
> "$TERMUX_PREFIX"/share/bash-completion/completions/miniserve
miniserve --print-completions zsh \
> "$TERMUX_PREFIX"/share/zsh/site-functions/_miniserve
miniserve --print-completions fish \
> "$TERMUX_PREFIX"/share/fish/vendor_completions.d/miniserve.fish
# Warn user on default behaviour of miniserve
printf "\e[1;33mWARNING:\e[0m %s %s\n%s\n" \
"miniserve follows symlinks in selected directory by default." \
"Consider aliasing it with '--no-symlinks' for safety." \
"See: https://github.com/svenstaro/miniserve/issues/498"
EOF
chmod 755 ./postinst
}