An updated PKGBUILD can be found here: https://raw.github.com/padakuro/archlinux-pkgbuilds/master/hiredis-git/PKGBUILD
Hope it works & fulfills the guidelines :)
Search Criteria
Package Details: hiredis-git 20120401-1
Package Actions
| Package Base: | hiredis-git |
|---|---|
| Description: | Minimalistic C client for Redis >= 1.2 |
| Upstream URL: | http://github.com/antirez/hiredis/ |
| Category: | lib |
| Licenses: | |
| Submitter: | None |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 1 |
| First Submitted: | 2010-12-03 13:02 |
| Last Updated: | 2012-04-01 15:51 |
Latest Comments
Anonymous comment
Comment by fmang
Please update this PKGBUILD too. Some users may want to use the latest version.
Besides, there is no point in keeping a broken package in AUR.
Comment by tsachev
I just added PKGBUILD with 0.11.0 upstream version here https://aur.archlinux.org/packages/hiredis
Anonymous comment
The repo moved to https://github.com/redis/hiredis
In order to makepkg this PKGBUILD, the makedepends and gitroot have to be changed. A fixed PKGBUILD would be great!
Anonymous comment
I'm sorry for not being true to my promise I made earlier. There is another user that will take the responsibility of maintaining this package soon.
Anonymous comment
I will get to updating this package on monday.
Comment by paul.c
Please fix dependencies. ('git make') should be ('git' 'make')
Comment by paul.c
Please fix dependencies. ('git make') should be ('git' 'make')
Anonymous comment
From the hiredis readme:
HIREDIS
Hiredis is a minimalistic C client library for the Redis database.
It is minimalistic because it just adds minimal support for the protocol, but at the same time it uses an high level printf-alike API in order to make it much higher level than otherwise suggested by its minimal code base and the lack of explicit bindings for every Redis command.
Apart from supporting sending commands and receiving replies, it comes with a reply parser that is decoupled from the I/O layer. It is a stream parser designed for easy reusability, which can for instance be used in higher level language bindings for efficient reply parsing.
Hiredis only supports the binary-safe Redis protocol, so you can use it with any Redis version >= 1.2.0.
The library comes with multiple APIs. There is the synchronous API, the asynchronous API and the reply parsing API.