#!/bin/sh
# Build script for uthash (header-only, no build system - just stage headers).
# NOTE: headers live under src/, not the tarball root (verified 2026-07-22).
set -e
cd "$SRCDIR/src"

mkdir -p "$PKGDIR$PREFIX/include"
cp -f *.h "$PKGDIR$PREFIX/include/"
