28 lines
684 B
Bash
28 lines
684 B
Bash
# Template file for 'hiredis'
|
|
pkgname=hiredis
|
|
version=1.1.0
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
checkdepends="redis"
|
|
short_desc="Minimalistic C client for Redis"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/redis/hiredis"
|
|
distfiles="https://github.com/redis/hiredis/archive/v${version}.tar.gz"
|
|
checksum=fe6d21741ec7f3fc9df409d921f47dfc73a4d8ff64f4ac6f1d95f951bf7f53d6
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
hiredis-devel_package() {
|
|
depends="${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|