void-packages/srcpkgs/redis/template
2015-04-01 22:19:39 +02:00

41 lines
1 KiB
Bash

# Template file for 'redis'
pkgname=redis
version=3.0.0
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=654c95c6236692dcb916fccba9a34d0877cc91338c8b6a372511e6eb080e34bf
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"
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
}