1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-17 06:17:12 +00:00
termux-packages/packages/mcfly/build.sh
Termux Github Actions 244004036e bump(main/mcfly): 0.8.1
This commit has been automatically submitted by Github Actions.
2023-06-04 00:27:20 +00:00

45 lines
1.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/cantino/mcfly
TERMUX_PKG_DESCRIPTION="Replaces your default ctrl-r shell history search with an intelligent search engine"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.8.1"
TERMUX_PKG_SRCURL=https://github.com/cantino/mcfly/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=727fc98b7291cc5b79c90a48d2e4460bc71550f221be8d2dad2377580f9b2d72
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_pre_configure() {
if [ "$TERMUX_ARCH" == "x86_64" ]; then
local libdir=target/x86_64-linux-android/release/deps
mkdir -p $libdir
pushd $libdir
RUSTFLAGS+=" -C link-arg=$($CC -print-libgcc-file-name)"
echo "INPUT(-l:libunwind.a)" > libgcc.so
popd
fi
}
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/mcfly
install -Dm600 -t $TERMUX_PREFIX/share/mcfly mcfly.{fi,z}sh
}
termux_step_create_debscripts() {
cat <<-EOF > ./postinst
#!$TERMUX_PREFIX/bin/sh
echo
echo "********"
echo "McFly does not support Bash on Android."
echo
echo "https://github.com/termux/termux-packages/issues/8722"
echo "https://github.com/cantino/mcfly/issues/215"
echo "********"
echo
EOF
}