cleanup Unicode data files after generating updated tables

This commit is contained in:
Thomas Wolff 2021-11-15 00:00:00 +01:00 committed by Corinna Vinschen
parent 3cef6dfb5e
commit 076c856739
1 changed files with 21 additions and 1 deletions

View File

@ -1,11 +1,31 @@
#############################################################################
# Generate Unicode data tables for string/wcwidth and ctype/??w*
unicode-update: unidata cleanup
#############################################################################
# Clean up downloaded files
cleanup:
rm ctype/UnicodeData.txt
rm string/Blocks.txt
rm string/EastAsianWidth.txt
rm string/UnicodeData.txt
rm string/uniset.tar.gz
#############################################################################
# Download Unicode data files
unidata:
cd string; ./mkunidata -u
cd ctype; ./mkunidata -u
# Generate Unicode data tables for string/wcwidth and ctype/??w*
#############################################################################
# Use installed Unicode data files from package unicode-ucd
unidata-local:
cd string; ./mkunidata -i
cd ctype; ./mkunidata -i
#############################################################################
# end