blob: 605a33cffa4af507660714da045f71b8ee128509 [file] [log] [blame]
#!/bin/sh
set -e
curl -L https://github.com/redis/hiredis/archive/v0.13.3.tar.gz | tar zx
# Compile and install to third-party/hiredis
(
cd ./hiredis-0.13.3
PREFIX=$PWD/../hiredis make all install
)