# Description: C preprocessor implementations of a hash table and a linked list # URL: https://troydhanson.github.io/uthash/ # Maintainer: KRAK3N Team, extra ports at krak3n dot my # Depends on: name=uthash version=2.3.0 release=1 source=(https://github.com/troydhanson/${name}/archive/v${version}/${name}-${version}.tar.gz) build() { cd ${name}-${version}/src # create directory for header files install -dm755 $PKG/usr/include/ # install header files in /usr/include for h in *.h; do install -m 644 ${h} $PKG/usr/include/ done }