termux-packages/packages/tmux/build.sh

34 lines
1.2 KiB
Bash
Raw Normal View History

2017-06-02 22:08:13 +02:00
TERMUX_PKG_HOMEPAGE=https://tmux.github.io/
2017-12-05 22:33:04 +01:00
TERMUX_PKG_DESCRIPTION="Terminal multiplexer"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE="BSD"
TERMUX_PKG_MAINTAINER="@termux"
# Link against libandroid-support for wcwidth(), see https://github.com/termux/termux-packages/issues/224
TERMUX_PKG_DEPENDS="ncurses, libevent, libandroid-support, libandroid-glob"
2021-06-28 21:09:58 +02:00
TERMUX_PKG_VERSION=3.2a
2020-04-29 00:39:27 +02:00
TERMUX_PKG_SRCURL=https://github.com/tmux/tmux/archive/${TERMUX_PKG_VERSION}.tar.gz
2021-06-28 21:09:58 +02:00
TERMUX_PKG_SHA256=497bc4ee16f10b53b161bf0253b6f9e20cd0f86c5d0104f149212cb0778ae13a
2019-07-29 20:53:32 +02:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-static"
TERMUX_PKG_BUILD_IN_SRC=true
2015-06-13 01:03:31 +02:00
TERMUX_PKG_CONFFILES="etc/tmux.conf"
2017-04-22 02:26:00 +02:00
termux_step_pre_configure() {
LDFLAGS+=" -landroid-glob"
2020-04-29 00:39:27 +02:00
./autogen.sh
2017-04-22 02:26:00 +02:00
}
termux_step_post_make_install() {
2015-06-13 01:03:31 +02:00
cp $TERMUX_PKG_BUILDER_DIR/tmux.conf $TERMUX_PREFIX/etc/tmux.conf
2019-04-25 14:28:23 +02:00
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
2015-06-13 01:03:31 +02:00
}
2019-09-17 20:08:20 +02:00
termux_step_create_debscripts() {
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
echo "mkdir -p $TERMUX_PREFIX/var/run" >> postinst
}