Files
termux-packages/packages/redis/build.sh
termux-pacman-bot 5d21bc8ca5 chore(main/redis): force-disable auto updates
Avoid auto-updates while running with `PACKAGES_OPT_OUT=true`
[no ci]
2024-10-14 11:36:01 +00:00

27 lines
951 B
Bash

TERMUX_PKG_HOMEPAGE=https://redis.io/
TERMUX_PKG_DESCRIPTION="In-memory data structure store used as a database, cache and message broker"
TERMUX_PKG_LICENSE="BSD 3-Clause"
TERMUX_PKG_MAINTAINER="@termux"
# Frozen! Do not update to 7.4.0
# until the license/replacement discussion is concluded
TERMUX_PKG_VERSION="1:7.2.5"
TERMUX_PKG_SRCURL=https://download.redis.io/releases/redis-${TERMUX_PKG_VERSION:2}.tar.gz
TERMUX_PKG_SHA256=5981179706f8391f03be91d951acafaeda91af7fac56beffb2701963103e423d
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_DEPENDS="libandroid-execinfo, libandroid-glob"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_CONFFILES="etc/redis.conf"
termux_step_pre_configure() {
export PREFIX=$TERMUX_PREFIX
export USE_JEMALLOC=no
CPPFLAGS+=" -DHAVE_BACKTRACE"
CFLAGS+=" $CPPFLAGS"
LDFLAGS+=" -landroid-execinfo -landroid-glob"
}
termux_step_post_make_install() {
install -Dm600 $TERMUX_PKG_SRCDIR/redis.conf $TERMUX_PREFIX/etc/redis.conf
}