mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-12 00:10:52 +00:00
b051fccd70
This commit has been automatically submitted by Github Actions.
38 lines
1.5 KiB
Bash
38 lines
1.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://tmux.github.io/
|
|
TERMUX_PKG_DESCRIPTION="Terminal multiplexer"
|
|
TERMUX_PKG_LICENSE="ISC"
|
|
TERMUX_PKG_MAINTAINER="Joshua Kahn @TomJo2000"
|
|
TERMUX_PKG_VERSION="3.5a"
|
|
TERMUX_PKG_SRCURL=https://github.com/tmux/tmux/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=49e68b41dec0bf408990160ee12fa29b06dee8f74c1f0b4b71c9d2a1477dd910
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
# Link against libandroid-support for wcwidth(), see https://github.com/termux/termux-packages/issues/224
|
|
TERMUX_PKG_DEPENDS="ncurses, libevent, libandroid-support, libandroid-glob"
|
|
# Set default TERM to screen-256color, see: https://raw.githubusercontent.com/tmux/tmux/3.3/CHANGES
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-static --with-TERM=screen-256color --enable-sixel"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
TERMUX_PKG_CONFFILES="etc/tmux.conf etc/profile.d/tmux.sh"
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -landroid-glob"
|
|
./autogen.sh
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
cp "$TERMUX_PKG_BUILDER_DIR"/tmux.conf "$TERMUX_PREFIX"/etc/tmux.conf
|
|
|
|
mkdir -p "$TERMUX_PREFIX"/etc/profile.d
|
|
echo "export TMUX_TMPDIR=$TERMUX_PREFIX/var/run" > "$TERMUX_PREFIX"/etc/profile.d/tmux.sh
|
|
|
|
mkdir -p "$TERMUX_PREFIX"/share/bash-completion/completions
|
|
termux_download \
|
|
https://raw.githubusercontent.com/imomaliev/tmux-bash-completion/homebrew_1.0.0/completions/tmux \
|
|
"$TERMUX_PREFIX"/share/bash-completion/completions/tmux \
|
|
05e79fc1ecb27637dc9d6a52c315b8f207cf010cdcee9928805525076c9020ae
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
mkdir -p "${TERMUX_PKG_MASSAGEDIR}/${TERMUX_PREFIX}"/var/run
|
|
}
|