33 lines
850 B
Bash
33 lines
850 B
Bash
# Template file for 'redis'
|
|
pkgname=redis
|
|
version=3.0.5
|
|
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 <gottox@voidlinux.eu>"
|
|
license="BSD"
|
|
checksum=4c176826eee909fbdc63db1c15adc22aab42d758043829e556f4331e6a5bd480
|
|
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
|
|
}
|