blob: d0590a75b7980f0715a1135f2eaab38ee693d166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
#############################################################################
# Use installed Unicode data files from package unicode-ucd
unidata-local:
cd string; ./mkunidata -i
cd ctype; ./mkunidata -i
#############################################################################
# end
|