HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
199 B
13 lines
199 B
7 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -x
|
||
|
set -o errexit -o nounset
|
||
|
|
||
|
pip install --user nose
|
||
|
pip install --user cpp-coveralls
|
||
|
export PATH=$HOME/.local/bin:$PATH
|
||
|
|
||
|
rm -f src/.libs/NONE.gcov
|
||
|
touch src/NONE
|
||
|
coveralls -e docs
|