1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/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 }