# Template file for 'redis' pkgname=redis version=3.2.8 revision=1 makedepends="jemalloc-devel" homepage="http://redis.io" distfiles="http://download.redis.io/releases/${pkgname}-${version}.tar.gz" short_desc="Advanced key-value store" maintainer="Enno Boland " license="BSD" checksum=61b373c23d18e6cc752a69d5ab7f676c6216dc2853e46750a8c4ed791d68482c system_accounts="redis" redis_homedir="/var/lib/redis" conf_files="/etc/redis/redis.conf" 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 } do_build() { case "$XBPS_TARGET_MACHINE" in *-musl) _malloc="none";; *) _malloc="jemalloc";; esac make CC=$CC CFLAGS="$CFLAGS" MALLOC=${_malloc} ${makejobs} } do_install() { make INSTALL_BIN=${DESTDIR}/usr/bin PREFIX=/usr install vlicense COPYING vinstall redis.conf 644 etc/redis vsv redis }