contrib/hiredis/Pkgfile

17 lines
388 B
Plaintext
Raw Normal View History

2016-08-06 18:16:34 +02:00
# Description: minimalistic C client library for the redis database
# URL: https://github.com/redis/hiredis
# Maintainer: Thomas Penteker, tek at serverop dot de
2016-08-06 17:34:10 +02:00
# Depends on:
name=hiredis
2020-06-08 21:14:01 +02:00
version=0.14.1
2016-08-06 17:34:10 +02:00
release=1
2019-04-10 00:58:47 +02:00
source=(https://github.com/redis/hiredis/archive/v$version/$name-v$version.tar.gz)
2016-08-06 17:34:10 +02:00
build() {
2020-06-08 21:14:01 +02:00
cd $name-$version
2016-08-06 17:34:10 +02:00
make
make PREFIX=/usr DESTDIR=$PKG install
}