33 lines
850 B
Bash
33 lines
850 B
Bash
# Template file for 'redis'
|
|
pkgname=redis
|
|
version=3.0.3
|
|
revision=3
|
|
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 <gottox@voidlinux.eu>"
|
|
license="BSD"
|
|
checksum=1d08fa665b16d0950274dfbd47fbbcf3485e43e901021338640a0334666e9da5
|
|
build_pie=yes
|
|
|
|
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() {
|
|
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
|
|
vsv redis
|
|
}
|