# Template file for 'redis' pkgname=redis version=5.0.3 revision=2 makedepends="jemalloc-devel libatomic-devel" checkdepends="tcl-devel" short_desc="Advanced key-value store" maintainer="Enno Boland " license="BSD-3-Clause" homepage="https://redis.io" changelog="https://raw.githubusercontent.com/antirez/redis/5.0/00-RELEASENOTES" distfiles="http://download.redis.io/releases/${pkgname}-${version}.tar.gz" checksum=e290b4ddf817b26254a74d5d564095b11f9cd20d8f165459efa53eb63cd93e02 system_accounts="redis" redis_homedir="/var/lib/redis" conf_files="/etc/redis/redis.conf" make_dirs="/var/lib/redis 0700 redis redis" do_configure() { sed -i \ -e "s|^# bind 127.0.0.1|bind 127.0.0.1|" \ -e "s|^dir .*|dir ${redis_homedir}|" \ -e "s|^pidfile .*|pidfile /run/redis/redis.pid|" redis.conf sed -i -e "s|^FINAL_LIBS=.*|& -latomic|" src/Makefile } do_build() { case "$XBPS_TARGET_MACHINE" in *-musl) _malloc="none";; *) _malloc="jemalloc";; esac make CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" V=1 MALLOC=${_malloc} ${makejobs} } do_check() { make test } do_install() { make INSTALL_BIN=${DESTDIR}/usr/bin PREFIX=/usr install vlicense COPYING vinstall redis.conf 644 etc/redis vsv redis }