1 #############################################################################
2 # Generate Unicode data tables for string/wcwidth and ctype/??w*
4 unicode-update: unidata cleanup
6 #############################################################################
7 # Clean up downloaded files
10 rm ctype/UnicodeData.txt
12 rm string/EastAsianWidth.txt
13 rm string/UnicodeData.txt
14 rm string/uniset.tar.gz
16 #############################################################################
17 # Download Unicode data files
20 cd string; ./mkunidata -u
21 cd ctype; ./mkunidata -u
23 #############################################################################
24 # Use installed Unicode data files from package unicode-ucd
27 cd string; ./mkunidata -i
28 cd ctype; ./mkunidata -i
30 #############################################################################