#!/bin/sh

MAKEDEPS=""
DEPS="musl"

SOURCE=""
ADDITIONAL="
    cdefs.h
    queue.h
    tree.h
"

DESC="Legacy compatibility headers for musl"

package () {
    install -d $PKG_DEST/usr/include/sys
    for h in cdefs  queue tree; do
        install -Dm644 $h.h $PKG_DEST/usr/include/sys
    done
}