           SPELL=wcwidth
         VERSION=0.2.5
          SOURCE=${SPELL}-${VERSION}.tar.gz
   SOURCE_URL[0]=https://pypi.io/packages/source/w/${SPELL}/${SOURCE}
     SOURCE_HASH=sha512:567604186fc6810cc794828f656aebda380a85d9a0dadde7743fadcd43cf29b022016055ee2a5c077399ac7c07f48d6d4ee4fa91a44e6efed96b7a8659280a97
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
      LICENSE[0]=MIT
        WEB_SITE=https://github.com/jquast/wcwidth
         ENTERED=20161224
           SHORT="measures number of Terminal column cells of wide-character codes"
cat << EOF
This Library is mainly for those implementing a Terminal Emulator, or programs
that carefully produce output to be interpreted by one.

Problem Statement: When printed to the screen, the length of the string is
usually equal to the number of cells it occupies. However, there are categories
of characters that occupy 2 cells (full-wide), and others that occupy 0.

Solution: POSIX.1-2001 and POSIX.1-2008 conforming systems provide wcwidth(3)
and wcswidth(3) C functions of which this python module’s functions precisely
copy. These functions return the number of cells a unicode string is expected to
occupy.
EOF
