aports/configs/redis/APKBUILD

22 lines
616 B
Plaintext
Raw Normal View History

2020-11-20 16:31:49 +00:00
# Contributor: Alex Denes <caskd@redxen.eu>
# Maintainer: Alex Denes <caskd@redxen.eu>
pkgname=redxen-config-redis
2020-12-29 19:03:55 +00:00
pkgver=2020.12.29
2020-11-20 16:31:49 +00:00
pkgrel=0
pkgdesc="Redis backend configuration"
url="https://git.redxen.eu/RedXen"
arch="noarch"
license="none"
depends="redis"
source="
redis.conf
"
options="!check" # Redis doesn't have a configuration test tool
package() {
2020-12-29 19:03:55 +00:00
install -dm700 "$pkgdir"/var/lib/redis
2020-11-20 16:31:49 +00:00
install -Dm644 redis.conf "$pkgdir"/etc/redis/redxen.conf
}
2020-12-29 19:03:55 +00:00
sha512sums="85b83fdec29dfe075aa2b4e79829b47ae42171a62878b3c69ca300a007d60e80634a92d62e646eb432aab5397c51c1f3ce406cfad3208d1e16cc5151711c4271 redis.conf"