Files
RedBear-OS/recipes/dev/fontconfig/source/doc/check-missing-doc
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

25 lines
529 B
Bash

#!/bin/sh
header=fontconfig-header
doc=fontconfig-doc
trap "rm $header $doc" 0 1 15
top_srcdir=${top_srcdir-".."}
(
cat $top_srcdir/fontconfig/*.h | grep '^Fc' |
grep -v FcPublic | sed 's/[^a-zA-Z0-9].*//';
cat $top_srcdir/fontconfig/*.h |
sed -n 's/#define \(Fc[a-zA-Z]*\)(.*$/\1/p') |
sort -u > $header
grep '@FUNC[+]*@' $top_srcdir/doc/*.fncs |
awk '{print $2}' |
sort -u > $doc
if cmp $doc $header > /dev/null; then
exit 0
fi
echo \
'Library Export Documentation'
diff -y $header $doc | grep '[<>]'
exit 1