HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
335 B
22 lines
335 B
#!/bin/sh |
|
|
|
if test $# = 0; then |
|
echo "Usage: $0 DIR..." |
|
exit 1 |
|
fi |
|
|
|
find "$@" -type d | |
|
while read d; do |
|
echo " GEN $d/MANIFEST"; |
|
( |
|
cd "$d" && |
|
ls | |
|
grep -v "MANIFEST\|README\|LICENSE\|COPYING\|AUTHORS\|SOURCES" | |
|
LANG=C sort > MANIFEST.tmp && |
|
mv MANIFEST.tmp MANIFEST || |
|
( |
|
rm -f MANIFEST.tmp |
|
false |
|
) |
|
) |
|
done
|
|
|