packager="Great-OS Team"
maintainer="sipo"

description="Minimalistic C client library for Redis"
url="https://github.com/redis/hiredis/"

name=hiredis
version=1.3.0
release=2

PKGMK_KEEP_SOURCES=no
source=(https://github.com/redis/$name/archive/refs/tags/v$version.tar.gz)

build(){
  cd $name-$version
  make PREFIX=/usr
}

package() {
  cd $name-$version
  make DESTDIR="$PKG" PREFIX=/usr install

  install -Dm 644 COPYING "$PKG"/usr/share/licenses/$name/COPYING
}
