# Template file for 'redis'
pkgname=redis
version=2.8.19
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 <eb@s01.de>"
license="BSD"
checksum=29bb08abfc3d392b2f0c3e7f48ec46dd09ab1023f9a5575fc2a93546f4ca5145
system_accounts="redis"
redis_homedir="/var/lib/redis"
conf_files="/etc/redis/redis.conf"
make_dirs="
	/var/lib/redis 0700 redis redis
	/run/redis 0750 redis redis"
build_options="systemd"
if [ "$build_option_systemd" ]; then
	systemd_services="redis.service on"
fi

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() {
	make CC=$CC CFLAGS="$CFLAGS" ${makejobs}
}

do_install() {
	make INSTALL_BIN="${DESTDIR}/usr/bin" PREFIX=/usr install
	vlicense COPYING

	vinstall "redis.conf" 644 "etc/redis"
	if [ "$build_option_systemd" ]; then
		vinstall "${FILESDIR}/redis.service" 644 "usr/lib/systemd/system"
	fi

	vsv redis
}