2 #See http://www.unicode.org/reports/tr44/
4 #Me Enclosing_Mark an enclosing combining mark
5 #Mn Nonspacing_Mark a nonspacing combining mark (zero advance width)
6 #Cf Format a format control character
9 UNICODEWIDTH_H=$(git rev-parse --show-toplevel)/unicode_width.h
11 if ! test -f UnicodeData.txt; then
12 wget http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
14 if ! test -f EastAsianWidth.txt; then
15 wget http://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt
17 if ! test -d uniset; then
18 git clone https://github.com/depp/uniset.git
22 if ! test -x uniset; then
24 ./configure --enable-warnings=-Werror CFLAGS='-O0 -ggdb'
28 UNICODE_DIR=. && export UNICODE_DIR &&
29 cat >$UNICODEWIDTH_H <<-EOF
30 static const struct interval zero_width[] = {
31 $(uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD |
34 static const struct interval double_width[] = {
35 $(uniset/uniset --32 eaw:F,W)