harfbuzz.build 327 B

123456789101112131415161718192021222324
  1. cd $tmpdir
  2. if [ ! -d $harfbuzzsrcdir ]; then
  3. wget $harfbuzzmirror/$harfbuzz
  4. tar -xf $harfbuzz
  5. fi
  6. mv harfbuzz-2.3.1 $harfbuzzsrcdir
  7. cd $harfbuzzsrcdir
  8. #./autogen.sh
  9. ./configure --prefix=$freondir \
  10. --disable-static \
  11. --enable-shared \
  12. --without-graphite2
  13. make -j20
  14. make install
  15. cd $tmpdir